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 c9aff22Copy full SHA for c9aff22
test/karma-test-shim.js
@@ -95,3 +95,16 @@ 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 = {};
105
+jasmine.getEnv().configure({
106
+ specFilter: function(spec) {
107
+ // Don't run any tests in the blacklist
108
+ return !testBlacklist[spec.getFullName()];
109
+ }
110
+});
0 commit comments