We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3f6632 commit c810c93Copy full SHA for c810c93
.github/workflows/maven.yml
@@ -23,7 +23,7 @@ permissions:
23
jobs:
24
build:
25
name: Build and Test
26
- runs-on: ubuntu-latest
+ runs-on: macos-latest
27
28
steps:
29
- uses: actions/checkout@v3
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://host.docker.internal:3004";
+ private static final String BASE_URL = "http://localhost:3004";
17
18
@BeforeClass
19
public void setup() {
0 commit comments