jasmine/example/example.js

7 lines
160 B
JavaScript
Raw Normal View History

describe('one suite description', function () {
2009-03-01 13:34:00 +00:00
it('should be a test', function() {
runs(function () {
expect(true).toEqual(true);
});
2009-03-01 13:34:00 +00:00
});
});