mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
edefa6fc7e
This PR revamps e2e tests, while adding a new one for the interactive demo guide: - Bumps Cypress from `9.7.0` to `12.11.0`; - Bumps Cypress GH action from `v2` to `v5`; - Makes any adjustments needed; - Fixes a lot of issues identified with existing tests; - Adds new `demo.spec.ts` e2e test that covers the entire demo guide flow; **Note:** Currently does not include `demo.spec.ts` in the GH action, as it [fails](https://github.com/Unleash/unleash/actions/runs/4896839575/jobs/8744137231?pr=3656) on step 2.13 (last step of "user-specific" topic). It runs perfectly fine locally, though. Might be placebo, but in general tests seem less flaky now and they may even be faster (especially when not adding the `demo` one, which would always take a long time).
31 lines
1.0 KiB
YAML
31 lines
1.0 KiB
YAML
name: e2e:frontend
|
|
on: [deployment_status]
|
|
jobs:
|
|
e2e:
|
|
if: github.event_name == 'deployment_status' && github.event.deployment_status.state == 'success' && contains(github.event.deployment_status.target_url, 'unleash-monorepo-frontend')
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
test:
|
|
- feature/feature.spec.ts
|
|
- groups/groups.spec.ts
|
|
- projects/access.spec.ts
|
|
- projects/overview.spec.ts
|
|
- segments/segments.spec.ts
|
|
- import/import.spec.ts
|
|
steps:
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: |
|
|
echo "$GITHUB_CONTEXT"
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
- name: Run Cypress
|
|
uses: cypress-io/github-action@v5
|
|
with:
|
|
working-directory: frontend
|
|
env: AUTH_USER=admin,AUTH_PASSWORD=unleash4all
|
|
config: baseUrl=${{ github.event.deployment_status.target_url }}
|
|
spec: cypress/integration/${{ matrix.test }}
|