We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a5874 commit e3125ceCopy full SHA for e3125ce
1 file changed
tests/playwright/web.spec.js
@@ -4,7 +4,7 @@ import { PlaywrightContainer } from "testcontainers-node-playwright";
4
const PLAYWRIGHT_IMAGE = "mcr.microsoft.com/playwright:v1.50.1-jammy";
5
6
describe("House of Test website", () => {
7
- const TESTS_PATH = path.resolve(__dirname, "testcontainers-nodejs-example");
+ const TESTS_PATH = path.resolve(__dirname, "..", "..");
8
let container;
9
10
beforeAll(async () => {
@@ -19,6 +19,9 @@ describe("House of Test website", () => {
19
"test", // run the test
20
"--reporter=html", // output the test results in HTML
21
]);
22
+
23
+ console.log("container output", output);
24
+ console.log("container exitCode", exitCode);
25
});
26
27
afterAll(async () => {
0 commit comments