jasmine/example/spec/example_suite.js

11 lines
283 B
JavaScript
Raw Normal View History

describe('ExampleSuite', 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);
});
2009-03-01 13:34:00 +00:00
});
});