We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 420edac commit 65431e4Copy full SHA for 65431e4
packages/@aws-cdk-testing/cli-integ/lib/cli/run-suite.ts
@@ -101,6 +101,7 @@ async function main() {
101
102
console.log(`Package source: ${packageSource.description}`);
103
console.log(`Test suite: ${suiteName}`);
104
+ console.log(`Test version: ${thisPackageVersion()}`);
105
106
await packageSource.prepare();
107
serializeForSubprocess(packageSource);
@@ -133,6 +134,11 @@ async function main() {
133
134
}
135
136
137
+function thisPackageVersion(): string {
138
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
139
+ return require('../../package.json').version;
140
+}
141
+
142
main().catch(e => {
143
// eslint-disable-next-line no-console
144
console.error(e);
0 commit comments