feat(aio): copy example code from angular.io
This commit is contained in:

committed by
Igor Minar

parent
3e34ba01bd
commit
1f3198cb50
8
aio/content/examples/styleguide/js/spec.js
Normal file
8
aio/content/examples/styleguide/js/spec.js
Normal file
@ -0,0 +1,8 @@
|
||||
// #docregion
|
||||
describe("Jasmine sample test", function() {
|
||||
|
||||
it("1+1 should be 2", function() {
|
||||
var result = 1 + 1;
|
||||
expect(result).toBe(2);
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user