Skip to content

Commit

Permalink
chore: add ts type
Browse files Browse the repository at this point in the history
  • Loading branch information
lirantal committed Mar 11, 2020
1 parent 61e4932 commit 669a2cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/system/cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ test('auth with UTMs in environment variables', async (t) => {

// read data from console.log
let stdoutMessages = '';
const stubConsoleLog = (msg) => (stdoutMessages += msg);
const stubConsoleLog = (msg: string) => (stdoutMessages += msg);
const origConsoleLog = console.log;
console.log = stubConsoleLog;

Expand Down

0 comments on commit 669a2cd

Please sign in to comment.