omi/test/js/hello.js

12 lines
171 B
JavaScript

describe("A suite is just a function", function() {
var a;
it("and so is a spec", function() {
a = true;
expect(a).toBe(true);
});
});