We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11cf04b commit 1e55f0aCopy full SHA for 1e55f0a
.github/workflows/maven.yml
@@ -38,7 +38,7 @@ jobs:
38
run: docker compose -f ./docker-compose-restfulbooker.yml up -d
39
40
- name: Start restful e-commerce service
41
- run: docker compose -f ./docker-compose-ecommerce.yml up --service-ports -d
+ run: docker compose -f ./docker-compose-ecommerce.yml up -d
42
43
- name: Build Project
44
run: mvn clean install -DskipTests
src/test/java/io/github/mfaisalkhatri/api/restfulecommerce/BaseTest.java
@@ -13,7 +13,7 @@ public class BaseTest {
13
14
protected Playwright playwright;
15
protected APIRequestContext request;
16
- private static final String BASE_URL = "http://localhost:3004";
+ private static final String BASE_URL = "http://restful-ecommerce:3004";
17
18
@BeforeClass
19
public void setup() {
0 commit comments