jasmine/test/example/example.js

7 lines
160 B
JavaScript
Raw Normal View History

2009-04-22 15:00:04 +00:00
describe('one suite description', function () {
it('should be a test', function() {
runs(function () {
expect(true).toEqual(true);
});
});
});