Skip to content

Commit a9c6475

Browse files
tidying up
1 parent a483067 commit a9c6475

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -217,3 +217,4 @@ pip-log.txt
217217
# custom
218218
.idea/
219219
node_modules/
220+
vendor/

karma.conf.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ module.exports = function(config) {
1717
files: [
1818
'vendor/jquery/jquery-2.1.0.min.js', // jQuery is included for the purposes of easier DOM selection when testing directives.
1919
'vendor/angular/angular.js',
20-
'vendor/angular/angular-mocks.js',
20+
'vendor/angular-ui-router/release/angular-ui-router.js',
21+
'vendor/angular-mocks/angular-mocks.js',
22+
'tmp/templates.js',
2123
'src/angularUtils.js',
2224
'src/filters/**/*.js',
2325
'src/filters/**/*.spec.js',
@@ -63,7 +65,7 @@ module.exports = function(config) {
6365
// - Safari (only Mac; has to be installed with `npm install karma-safari-launcher`)
6466
// - PhantomJS
6567
// - IE (only Windows; has to be installed with `npm install karma-ie-launcher`)
66-
browsers: ['Firefox'],
68+
browsers: ['Chrome'],
6769

6870

6971
// If browser does not capture in given timeout [ms], kill it

0 commit comments

Comments
 (0)