Skip to content

Commit 7f2d319

Browse files
committed
tests: add telemetry option in run-test
1 parent 54d8318 commit 7f2d319

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

test/run-test.js

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

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

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

0 commit comments

Comments
 (0)