Add jasmine support

This commit is contained in:
Adam Stankiewicz
2014-04-15 01:12:18 +02:00
parent 610f4c5701
commit daa6fc6958
4 changed files with 41 additions and 0 deletions

5
test_spec.js Normal file
View File

@@ -0,0 +1,5 @@
describe("A suite", function() {
it("contains spec with an expectation", function() {
expect(true).toBe(true);
});
});