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 706b2e3 commit 085b15bCopy full SHA for 085b15b
packages/nextjs/test/integration/test/runner.js
@@ -66,7 +66,7 @@ module.exports.run = async ({
66
67
let scenarios = await fs.readdir(scenariosDir);
68
if (argv.filter) {
69
- scenarios = scenarios.filter(file => file.toLowerCase().includes(argv.filter));
+ scenarios = scenarios.filter(file => file.toLowerCase().includes(argv.filter.toLowerCase()));
70
}
71
scenarios = scenarios.map(s => path.resolve(scenariosDir, s));
72
0 commit comments