Skip to content

Commit

Permalink
chore(cli-lib-alpha): remove dependency on in-source compilation (#32500
Browse files Browse the repository at this point in the history
)

An integration test of `cli-lib-alpha` expects a test compilation `app.ts` -> `app.js` to have happened.

In new projen-based repos, this isn't going to work, since we don't compile the test directories at all and run them through `ts-node` instead. Configure the test to use `ts-node` as well.

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
rix0rrr authored Dec 12, 2024
1 parent 6e28ffe commit a73f84b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@aws-cdk/cli-lib-alpha/test/test-app/cdk.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"app": "node app.js"
"app": "ts-node app.ts"
}

0 comments on commit a73f84b

Please sign in to comment.