6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
describe("Foo", function () {
|
|
it("creates a global variable called Util", function () {
|
|
expect(Util).to.be.an("object");
|
|
});
|
|
})
|