Skip to content

Commit 83fdf4f

Browse files
committed
Accept test command as argument to test_changed script
1 parent feb2c9d commit 83fdf4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/ci-test/test_changed.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const root = resolve(__dirname, '../..');
2525

2626
const argv = yargs.parseSync();
2727
const inputTestConfigName = argv._[0].toString();
28-
const testCommand = 'test:ci';
28+
const testCommand = argv._[1]?.toString() ?? 'test:ci';
2929

3030
const allTestConfigNames = Object.keys(testConfig);
3131
if (!inputTestConfigName) {

0 commit comments

Comments
 (0)