Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ServerlessLife committed Oct 1, 2024
1 parent a1aa606 commit 4af0344
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/cdk-basic.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('cdk-basic', async () => {

beforeAll(async () => {
if (process.env.CI === 'true' || process.env.RUN_TEST_FROM_CLI === 'true') {
lldProcess = await startDebugger(folder, ['-c=environment=test']);
lldProcess = await startDebugger(folder, ['-c environment=test']);
}
});

Expand Down
2 changes: 1 addition & 1 deletion test/cdk-esm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe('cdk-esm', async () => {

beforeAll(async () => {
if (process.env.CI === 'true' || process.env.RUN_TEST_FROM_CLI === 'true') {
lldProcess = await startDebugger(folder, ['-c=environment=test']);
lldProcess = await startDebugger(folder, ['-c environment=test']);
}
});

Expand Down

0 comments on commit 4af0344

Please sign in to comment.