Skip to content

Commit

Permalink
test: skip custom reporters on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Aug 15, 2022
1 parent 5adbf4b commit f34f2c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/reporters/tests/custom-reporter.spec.ts
Expand Up @@ -36,8 +36,8 @@ async function runWithRetry(...runOptions: string[]) {
}

describe.concurrent('custom reporters', () => {
// On Windows child_process is very unstable, we skip testing it
if (process.platform === 'win32' && process.env.CI)
// On Windows and macOS child_process is very unstable, we skip testing it as the functionality is tested on Linux
if ((process.platform === 'win32' || process.platform === 'darwin') && process.env.CI)
return test.skip('skip on windows')

test('custom reporter instances defined in configuration works', async () => {
Expand Down

0 comments on commit f34f2c1

Please sign in to comment.