Skip to content

Commit 32ae7be

Browse files
committed
debugging on CI
1 parent dbdbfb4 commit 32ae7be

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/karma-test-shim.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ configureTestBed()
2525
/** Runs the Angular Material specs in Karma. */
2626
function runMaterialSpecs() {
2727
// By importing all spec files, Karma will run the tests directly.
28-
return Promise.all(specFiles.map(function(fileName) {
28+
const subset = specFiles.slice(0, specFiles.length / 2);
29+
return Promise.all(subset.map(function(fileName) {
2930
return System.import(fileName);
3031
}));
3132
}

0 commit comments

Comments
 (0)