Skip to content

Commit 3438d58

Browse files
chore: remove stderr assertions
1 parent 14891a5 commit 3438d58

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/e2e/cli.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ describe("CLI entrypoint", () => {
2121
});
2222

2323
it("should handle dry run request", async () => {
24-
const { stdout, stderr } = await execFileAsync(process.execPath, [CLI_PATH, "--dryRun"]);
24+
const { stdout } = await execFileAsync(process.execPath, [CLI_PATH, "--dryRun"]);
2525
expect(stdout).toContain("Configuration:");
2626
expect(stdout).toContain("Enabled tools:");
27-
expect(stderr).toEqual("");
27+
// We don't do stderr assertions because in our CI, for docker-less env
28+
// atlas local tools push message on stderr stream.
2829
});
2930
});

0 commit comments

Comments
 (0)