9 lines
145 B
JavaScript
Raw Normal View History

2015-08-10 11:33:41 -07:00
describe("Jasmine sample test", function() {
it("1+1 should be 2", function() {
var result = 1 + 1;
expect(result).toBe(2);
});
});