* Don't run them in browsers in the regular CI build * Run them in browsers in a special nightly build * Run them in Node in the regular CI build * Run them when developers manually run the suite This should allow the regular CI build to give us a more useful signal, while keeping us from losing sight of the flaky specs.
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
(function(env) {
|
|
env.skipBrowserFlake = function() {
|
|
pending(
|
|
'Skipping specs that are known to be flaky in browsers in this run'
|
|
);
|
|
};
|
|
})(jasmine.getEnv());
|