Skip to content

Commit e3125ce

Browse files
committed
fix: change TESTS_PATH
1 parent a4a5874 commit e3125ce

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

tests/playwright/web.spec.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { PlaywrightContainer } from "testcontainers-node-playwright";
44
const PLAYWRIGHT_IMAGE = "mcr.microsoft.com/playwright:v1.50.1-jammy";
55

66
describe("House of Test website", () => {
7-
const TESTS_PATH = path.resolve(__dirname, "testcontainers-nodejs-example");
7+
const TESTS_PATH = path.resolve(__dirname, "..", "..");
88
let container;
99

1010
beforeAll(async () => {
@@ -19,6 +19,9 @@ describe("House of Test website", () => {
1919
"test", // run the test
2020
"--reporter=html", // output the test results in HTML
2121
]);
22+
23+
console.log("container output", output);
24+
console.log("container exitCode", exitCode);
2225
});
2326

2427
afterAll(async () => {

0 commit comments

Comments
 (0)