jasmine/example/example.js
2009-03-01 05:34:00 -08:00

7 lines
176 B
JavaScript

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