Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
enell committed Feb 9, 2024
1 parent 84626c1 commit c8a667f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,17 @@ jobs:
command: |
npx playwright install
- run: pnpm run test:integration
- run:
name: Compress report
command: tar -cvzf report.tar ./test/integration/reports/html
- store_test_results:
path: ./test/integration/reports/xml/report.xml
- store_artifacts:
path: ./test/integration/suites
- store_artifacts:
path: ./test/integration/reports/html
- store_artifacts:
path: ./report.tar

publish-dev:
executor: docker-node
Expand Down
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion test/integration/playwright.config.integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const config = {
reporter: [
['dot'],
['html', { outputFolder: './reports/html' }],
['junit', { outputFile: './test/integration/reports/xml/report.xml' }],
['junit', { outputFile: './reports/xml/report.xml' }],
],
testDir: './',
forbidOnly: !!process.env.CI,
Expand Down
2 changes: 1 addition & 1 deletion test/rendering/playwright.config.rendering.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const config = {
reporter: [
['dot'],
['html', { outputFolder: './reports/html' }],
['junit', { outputFile: './test/rendering/reports/xml/report.xml' }],
['junit', { outputFile: './reports/xml/report.xml' }],
],
testDir: './',
forbidOnly: !!process.env.CI,
Expand Down

0 comments on commit c8a667f

Please sign in to comment.