Lines Matching refs:args
13 const args = ['--test', 'a-random-file-that-does-not-exist.js'];
14 const child = spawnSync(process.execPath, args);
25 const args = ['--test'];
26 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') });
42 const args = ['--require', join(testFixtures, 'protoMutation.js'), '--test'];
43 const child = spawnSync(process.execPath, args, { cwd: join(testFixtures, 'default-behavior') });
59 const args = ['--test', join(testFixtures, 'index.js')];
60 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
71 const args = ['--test', join(testFixtures, 'default-behavior/node_modules')];
72 const child = spawnSync(process.execPath, args);
83 const args = ['--test'];
85 const child = spawnSync(process.execPath, args, options);
108 flags.forEach((args) => {
109 const child = spawnSync(process.execPath, args);
121 const args = [
127 const child = spawnSync(process.execPath, args);
172 const args = [
176 const child = spawnSync(process.execPath, args);
198 const args = ['--no-warnings',
202 const child = spawnSync(process.execPath, args);
213 const args = ['--test', '--test-shard=1', join(testFixtures, 'index.js')];
214 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
225 const args = ['--test', '--test-shard=1/2/3', join(testFixtures, 'index.js')];
226 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
237 const args = ['--test', '--test-shard=0/3', join(testFixtures, 'index.js')];
238 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
249 const args = ['--test', '--test-shard=0xf/20abcd', join(testFixtures, 'index.js')];
250 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
261 const args = ['--test', '--test-shard=hello', join(testFixtures, 'index.js')];
262 const child = spawnSync(process.execPath, args, { cwd: testFixtures });
275 const args = [
280 const child = spawnSync(process.execPath, args);
311 const args = [
316 const child = spawnSync(process.execPath, args);