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.
1 parent dbdbfb4 commit 32ae7beCopy full SHA for 32ae7be
test/karma-test-shim.js
@@ -25,7 +25,8 @@ configureTestBed()
25
/** Runs the Angular Material specs in Karma. */
26
function runMaterialSpecs() {
27
// By importing all spec files, Karma will run the tests directly.
28
- return Promise.all(specFiles.map(function(fileName) {
+ const subset = specFiles.slice(0, specFiles.length / 2);
29
+ return Promise.all(subset.map(function(fileName) {
30
return System.import(fileName);
31
}));
32
}
0 commit comments