Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/testing/src/TestStack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,11 @@ class TestStack {
* It returns the outputs of the deployed stack.
*/
public async deploy(): Promise<Record<string, string>> {
const outdir = join(tmpdir(), 'powertools-e2e-testing');
const outputFilePath = join(outdir, `${this.stack.stackName}.outputs.json`);
const outdir = join(
tmpdir(),
`${this.stack.stackName}-powertools-e2e-testing`
);
const outputFilePath = join(outdir, 'outputs.json');
this.#cx = await this.#cli.fromAssemblyBuilder(
async () => this.app.synth(),
{
Expand Down
Loading