7 lines
191 B
JavaScript
7 lines
191 B
JavaScript
describe("helper", function() {
|
|
it("should load the helpers", function() {
|
|
var expectation= expect(true);
|
|
|
|
expect(typeof(expectation.toHaveProperty)).toBe('function');
|
|
});
|
|
}); |