Skip to content

Commit ab52bb5

Browse files
authored
chore: update cdk.json to use correct entrypoint in init-javascript test (#27257)
init-javascript.integtest.js is failing in the main pipeline with the following error: ``` Error: Cannot find module '/tmp/cdk-integ-0iwta1unfroo/new-entrypoing.mjs' ``` This PR fixes this by correcting the spelling of `new-entrypoing` to `new-entrypoint` ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 42494f1 commit ab52bb5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/@aws-cdk-testing/cli-integ/tests/init-javascript/init-javascript.integtest.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ new TestjsStack(app, 'TestjsStack');
4949

5050
// Rewrite 'cdk.json' to use new entrypoint
5151
const cdkJson = await fs.readJson(path.join(context.integTestDir, 'cdk.json'));
52-
cdkJson.app = 'node new-entrypoing.mjs';
52+
cdkJson.app = 'node new-entrypoint.mjs';
5353
await fs.writeJson(path.join(context.integTestDir, 'cdk.json'), cdkJson);
5454

5555
await shell.shell(['cdk', 'synth']);

0 commit comments

Comments
 (0)