Skip to content

Commit

Permalink
run only smoke tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Jul 2, 2024
1 parent 7cfc5ff commit b82ad71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests_primary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,5 +56,5 @@ jobs:
shell: bash
- name: Run tests
run: |
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test -- --project=${{ matrix.browser }}-*
xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run ctest -- --grep '@smoke'
shell: bash
4 changes: 1 addition & 3 deletions tests/library/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,8 @@ const outputDir = path.join(__dirname, '..', '..', 'test-results');
const testDir = path.join(__dirname, '..');
const reporters = () => {
const result: ReporterDescription[] = process.env.CI ? [
currentsReporter(currentsConfig),
['dot'],
['json', { outputFile: path.join(outputDir, 'report.json') }],
['blob', { fileName: `${process.env.PWTEST_BOT_NAME}.zip` }],
currentsReporter(currentsConfig),
] : [
['html', { open: 'on-failure' }]
];
Expand Down

0 comments on commit b82ad71

Please sign in to comment.