Skip to content

Commit a9b9c55

Browse files
committed
fix tests, add missing libraries, add sample test
1 parent be85dc2 commit a9b9c55

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@
3131
"gulp-uglify": "~1.0.1",
3232
"gulp-useref": "~1.0.2",
3333
"http-proxy": "~1.7.0",
34+
"jasmine-core": "~2.5.2",
3435
"jshint-stylish": "~1.0.0",
36+
"karma": "~1.5.0",
3537
"karma-jasmine": "~0.3.1",
3638
"karma-phantomjs-launcher": "~0.1.4",
3739
"main-bower-files": "~2.4.0",

src/app/app.spec.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
describe('Abstract test to make sure that karma works properly', function() {
2+
it('Is true always true?', function() {
3+
expect(true).toBe(true);
4+
});
5+
});

0 commit comments

Comments
 (0)