jasmine/test/example/example.js
2009-04-22 08:00:04 -07:00

7 lines
160 B
JavaScript

describe('one suite description', function () {
it('should be a test', function() {
runs(function () {
expect(true).toEqual(true);
});
});
});