We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2d2b20 commit afca266Copy full SHA for afca266
test/docker/container.js
@@ -14,10 +14,8 @@ describe('container image tests', async () => {
14
const getBaseUrl = () => `http://localhost:${container.getMappedPort(SERVER_PORT)}`;
15
16
before(async () => {
17
- let image;
18
-
19
// assume we're being run from the root of the repo
20
- image = await GenericContainer.fromDockerfile("./").build();
+ let image = await GenericContainer.fromDockerfile("./").build();
21
22
container = await image.withExposedPorts(SERVER_PORT)
23
.withWaitStrategy(Wait.forLogMessage(START_MESSAGE))
0 commit comments