mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2026-07-22 05:53:03 -04:00
Refactored test filtering via grep CLI option
This commit is contained in:
@@ -91,8 +91,7 @@ export default (gulp, config, args) => {
|
||||
|
||||
/* Start Gemini and return runner upon finish */
|
||||
return new Gemini(gemini).test(`${config.tests.visual}/suites`, {
|
||||
reporters: [process.env.CI ? "flat" : "html"],
|
||||
grep: args.grep ? new RegExp(args.grep, "i") : null,
|
||||
reporters: ["flat"].concat(process.env.CI ? [] : ["html"]),
|
||||
browsers: args.browsers ? [].concat(args.browsers) : null
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user