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 0b97f1bCopy full SHA for 0b97f1b
test/karma-test-shim.js
@@ -25,7 +25,13 @@ 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) {
+ // 1/8 - 6/8, 7/8 - 8/8 => passes
29
+ // 6/8 - 7/8 => fails
30
+ const range = [13/16, 14/16].map(x => Math.floor(x * specFiles.length));
31
+ console.error(`>>>> File ${range[0]}-${range[1]} of ${specFiles.length}`);
32
+ const subset = specFiles.slice(...range);
33
+ subset.forEach(f => console.error(`>>>> ${f}`));
34
+ return Promise.all(subset.map(function(fileName) {
35
return System.import(fileName);
36
}));
37
}
0 commit comments