diff --git a/.circleci/config.yml b/.circleci/config.yml index 5d35594b..c91af9b8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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 diff --git a/test/integration/baselines/distplot-brush-x-axis-range-selection-baseline.png b/test/integration/baselines/distplot-brush-x-axis-range-selection-baseline.png index ebfbae9b..cd50cbd7 100644 Binary files a/test/integration/baselines/distplot-brush-x-axis-range-selection-baseline.png and b/test/integration/baselines/distplot-brush-x-axis-range-selection-baseline.png differ diff --git a/test/integration/baselines/histogram-brush-y-axis-range-selection-baseline.png b/test/integration/baselines/histogram-brush-y-axis-range-selection-baseline.png index 1804ec18..271ffaba 100644 Binary files a/test/integration/baselines/histogram-brush-y-axis-range-selection-baseline.png and b/test/integration/baselines/histogram-brush-y-axis-range-selection-baseline.png differ diff --git a/test/integration/playwright.config.integration.js b/test/integration/playwright.config.integration.js index e4e6e0c2..92c2a137 100644 --- a/test/integration/playwright.config.integration.js +++ b/test/integration/playwright.config.integration.js @@ -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, diff --git a/test/rendering/playwright.config.rendering.js b/test/rendering/playwright.config.rendering.js index 61613d18..92c2a137 100644 --- a/test/rendering/playwright.config.rendering.js +++ b/test/rendering/playwright.config.rendering.js @@ -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,