angular-cn/public/docs/_examples/quickstart/js/spec.js

9 lines
145 B
JavaScript
Raw Normal View History

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