Merge pull request #13730 from Snuffleupagus/botbrowsertest
Add a new "botbrowsertest" gulp-task, to allow running only the browser tests on the bots
This commit is contained in:
commit
ad34f16861
15
gulpfile.js
15
gulpfile.js
@ -1607,6 +1607,21 @@ gulp.task(
|
|||||||
})
|
})
|
||||||
);
|
);
|
||||||
|
|
||||||
|
gulp.task(
|
||||||
|
"botbrowsertest",
|
||||||
|
gulp.series(
|
||||||
|
setTestEnv,
|
||||||
|
"generic",
|
||||||
|
"components",
|
||||||
|
function runBotBrowserTest() {
|
||||||
|
return streamqueue(
|
||||||
|
{ objectMode: true },
|
||||||
|
createTestSource("browser (no reftest)", true)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
gulp.task(
|
gulp.task(
|
||||||
"unittest",
|
"unittest",
|
||||||
gulp.series(setTestEnv, "generic", function runUnitTest() {
|
gulp.series(setTestEnv, "generic", function runUnitTest() {
|
||||||
|
Loading…
Reference in New Issue
Block a user