Skip to content
This repository was archived by the owner on Feb 28, 2022. It is now read-only.

Commit 666d422

Browse files
committed
fix(karma): test now running
1 parent bc67150 commit 666d422

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

karma/karma.conf.js

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,18 @@ module.exports = function(config){
22
config.set({
33
basePath : '',
44
files : [
5-
{pattern: '../dist/dependencies.js', watched: true, included: true, nocache: true},
5+
{pattern: '../node_modules/angular/angular.min.js', watched: true, included: true, nocache: true},
6+
{pattern: '../node_modules/ngstorage/ngStorage.min.js', watched: true, included: true, nocache: true},
7+
{pattern: '../node_modules/angular-base64/angular-base64.min.js', watched: true, included: true, nocache: true},
68
{pattern: '../node_modules/osmtogeojson/osmtogeojson.js', watched: true, included: true, nocache: true},
79
{pattern: '../node_modules/angular-mocks/angular-mocks.js', watched: false, included: true, served: true},
810
{pattern: '../node_modules/ng-describe/dist/ng-describe.js', watched: false, included: true, served: true},
9-
{pattern: '../dist/osm.js', watched: true, included: true, nocache: true},
11+
{pattern: '../dist/osm-full.js', watched: true, included: true, nocache: true},
1012
{pattern: '../src/**/*.spec.js', watched: true, included: true, nocache: true}
1113
],
1214
exclude : [],
1315
autoWatch : true,
1416
frameworks: ['jasmine'],
15-
plugins : [
16-
'karma-jasmine',
17-
'karma-chrome-launcher',
18-
'karma-firefox-launcher'
19-
],
2017
reporters: ['dots'],
2118
logLevel: 'LOG_DEBUG'
2219
});

0 commit comments

Comments
 (0)