Skip to content

Commit

Permalink
SLVUU-129: Run layout server for e2e tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pling-scottlogic committed Jan 10, 2024
1 parent 5e6acbc commit 92c70c6
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
uses: actions/checkout@v3
- name: Install Node & dependencies
uses: ./.github/actions/setup-vuu-ui
- name: Start layout server
run: cd ./layout-server && mvn spring-boot:run
- name: Run end-to-end tests in Chrome
uses: cypress-io/github-action@bd9dda317ed2d4fbffc808ba6cdcd27823b2a13b
with:
Expand All @@ -41,7 +43,7 @@ jobs:
browser: chrome
build: npm run showcase:build
start: npm run showcase:preview
wait-on: "http://localhost:4173"
wait-on: http://localhost:4173, http://localhost:8081
- name: Run end-to-end tests in Edge
uses: cypress-io/github-action@bd9dda317ed2d4fbffc808ba6cdcd27823b2a13b
with:
Expand All @@ -50,7 +52,7 @@ jobs:
browser: edge
build: npm run showcase:build
start: npm run showcase:preview
wait-on: "http://localhost:4173"
wait-on: http://localhost:4173, http://localhost:8081

# ensure the vuu example still builds
vuu-app-build:
Expand Down

0 comments on commit 92c70c6

Please sign in to comment.