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 a3b27cc commit d589114Copy full SHA for d589114
test/karma-test-shim.js
@@ -95,3 +95,15 @@ function patchTestBedToDestroyFixturesAfterEveryTest(testBed) {
95
testBed.resetTestingModule();
96
});
97
}
98
+
99
100
+// Filter out any tests explicitly given in the blacklist.
101
+// On the angular/material2 repo, this blacklist is always empty.
102
+// When these tests are run on angular/angular, the blacklist will be replaced
103
+// with all of the known failures when running the component tests with ivy.
104
+var testBlacklist = null;
105
+jasmine.getEnv().configure({
106
+ specFilter: function(spec) {
107
+ return !testBlacklist || !testBlacklist[spec.getFullName()];
108
+ }
109
+});
0 commit comments