Skip to content

Commit 2fcb6ab

Browse files
committed
fix(test) corrected order of loaded files
According to angular/angular#9815 system-polyfills.js needs to be loaded before zone.js
1 parent 64bbbcf commit 2fcb6ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

addon/ng2/blueprints/ng2/files/config/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ module.exports = function (config) {
1818
},
1919
files: [
2020
{ pattern: 'dist/vendor/es6-shim/es6-shim.js', included: true, watched: false },
21+
{ pattern: 'dist/vendor/systemjs/dist/system-polyfills.js', included: true, watched: false },
2122
{ pattern: 'dist/vendor/zone.js/dist/zone.js', included: true, watched: false },
2223
{ pattern: 'dist/vendor/reflect-metadata/Reflect.js', included: true, watched: false },
23-
{ pattern: 'dist/vendor/systemjs/dist/system-polyfills.js', included: true, watched: false },
2424
{ pattern: 'dist/vendor/systemjs/dist/system.src.js', included: true, watched: false },
2525
{ pattern: 'dist/vendor/zone.js/dist/async-test.js', included: true, watched: false },
2626
{ pattern: 'dist/vendor/zone.js/dist/fake-async-test.js', included: true, watched: false },

0 commit comments

Comments
 (0)