11 lines
278 B
JavaScript
11 lines
278 B
JavaScript
describe('Example', function () {
|
|
it('should have a passing test', function() {
|
|
expect(true).toEqual(true);
|
|
});
|
|
|
|
describe('nested describe', function () {
|
|
it('should also have a passing test', function () {
|
|
expect(true).toEqual(true);
|
|
});
|
|
});
|
|
}); |