Skip to content

Commit 28841fe

Browse files
authored
chore: update cdk output dir (#3854)
1 parent 114188c commit 28841fe

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

packages/testing/src/TestStack.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,11 @@ class TestStack {
134134
* It returns the outputs of the deployed stack.
135135
*/
136136
public async deploy(): Promise<Record<string, string>> {
137-
const outdir = join(tmpdir(), 'powertools-e2e-testing');
138-
const outputFilePath = join(outdir, `${this.stack.stackName}.outputs.json`);
137+
const outdir = join(
138+
tmpdir(),
139+
`${this.stack.stackName}-powertools-e2e-testing`
140+
);
141+
const outputFilePath = join(outdir, 'outputs.json');
139142
this.#cx = await this.#cli.fromAssemblyBuilder(
140143
async () => this.app.synth(),
141144
{

0 commit comments

Comments
 (0)