We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 114188c commit 28841feCopy full SHA for 28841fe
packages/testing/src/TestStack.ts
@@ -134,8 +134,11 @@ class TestStack {
134
* It returns the outputs of the deployed stack.
135
*/
136
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`);
+ const outdir = join(
+ tmpdir(),
139
+ `${this.stack.stackName}-powertools-e2e-testing`
140
+ );
141
+ const outputFilePath = join(outdir, 'outputs.json');
142
this.#cx = await this.#cli.fromAssemblyBuilder(
143
async () => this.app.synth(),
144
{
0 commit comments