Skip to content

Commit aef939c

Browse files
committed
fix: test on node 20
Something somewhere broke importing stripAnsi on node 20 in vitest???
1 parent 87fe890 commit aef939c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/local/commands/secrets/ls.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ describe('apify secrets ls', () => {
3737
it('should list all secrets', async () => {
3838
const spy = vitest.spyOn(console, 'log');
3939

40-
await testRunCommand(SecretsLsCommand, {});
40+
await testRunCommand(SecretsLsCommand, { flags_json: true });
4141

4242
// Verify the command outputs our test secrets
4343
const output = spy.mock.calls.map((call) => call.join(' ')).join('\n');

0 commit comments

Comments
 (0)