7 lines
160 B
JavaScript
7 lines
160 B
JavaScript
|
describe('one suite description', function () {
|
||
|
it('should be a test', function() {
|
||
|
runs(function () {
|
||
|
expect(true).toEqual(true);
|
||
|
});
|
||
|
});
|
||
|
});
|