Skip to content

Commit

Permalink
Implement playwright acceptance tests for vertical full page map
Browse files Browse the repository at this point in the history
  • Loading branch information
likimmy committed Nov 21, 2023
1 parent 766fad2 commit eb3436b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,8 @@ jobs:
run: npm run setup-test-site
- name: Build test site
run: npm run build-test-site
- name: Serve test site
run: npm run serve-test-site
- name: Run Playwright tests
run: npx playwright test
- name: Serve test site and run playwright tests
run: npm run serve-test-site & npx playwright test
- uses: actions/upload-artifact@v3
if: always()
with:
Expand Down
1 change: 0 additions & 1 deletion e2e/vertical-full-page-map.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,4 @@ test.describe('full page map with filters test suite', () => {
const responsePromise = await page.waitForResponse(/https:\/\/prod-cdn\.us\.yextapis\.com\/v2\/accounts\/me\/search\/vertical/i);
const response = await responsePromise;
});

});

0 comments on commit eb3436b

Please sign in to comment.