Skip to content

Commit

Permalink
e2e tests (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
JurreBrandsenInfoSupport committed Apr 11, 2024
1 parent 66ea15e commit 07ace0a
Show file tree
Hide file tree
Showing 17 changed files with 8,269 additions and 7,762 deletions.
10 changes: 9 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,13 @@ AZURE_AD_CLIENT_ID="dummy"
AZURE_AD_CLIENT_SECRET="dummy"
AZURE_AD_TENANT_ID="dummy"

STRESS_TEST="false"
# Used for resetting the e2e account user.
FRESH_RUN="false"

# Used for authenticating the e2e account user.
GITHUB_ID="dummy"
GITHUB_SECRET="dummy"
EMAIL="dummy"
PASSWORD="dummy"


27 changes: 27 additions & 0 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Playwright Tests
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- name: Install dependencies
run: npm ci
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npx playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
8 changes: 7 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,10 @@ yarn-error.log*
# typescript
*.tsbuildinfo

/import
/import
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/

playwright/.auth
Loading

0 comments on commit 07ace0a

Please sign in to comment.