Skip to content

Commit f5e2f7f

Browse files
committed
revert: remove telemetry option from execa in run-test
1 parent 7f2d319 commit f5e2f7f

1 file changed

Lines changed: 1 addition & 5 deletions

File tree

test/run-test.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,7 @@ const execOpts = { cwd: inputDir, stderr: 'inherit' };
3131

3232
console.log('running codemod');
3333

34-
const codemod = execa(
35-
'../../../bin/cli.js',
36-
['--telemetry=http://localhost:4200', 'app'],
37-
execOpts
38-
);
34+
const codemod = execa('../../../bin/cli.js', ['http://localhost:4200', 'app'], execOpts);
3935
codemod.stdout.pipe(process.stdout);
4036
await codemod;
4137

0 commit comments

Comments
 (0)