We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be85dc2 + a9b9c55 commit 7263420Copy full SHA for 7263420
package.json
@@ -31,7 +31,9 @@
31
"gulp-uglify": "~1.0.1",
32
"gulp-useref": "~1.0.2",
33
"http-proxy": "~1.7.0",
34
+ "jasmine-core": "~2.5.2",
35
"jshint-stylish": "~1.0.0",
36
+ "karma": "~1.5.0",
37
"karma-jasmine": "~0.3.1",
38
"karma-phantomjs-launcher": "~0.1.4",
39
"main-bower-files": "~2.4.0",
src/app/app.spec.js
@@ -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