Skip to content

Commit dc5fc64

Browse files
author
kauanAfonso
committed
fix(example-webpack): skip bundle-web test on macOS
Signed-off-by: kauanAfonso <kauan.afonso@ibm.com>
1 parent 76aa667 commit dc5fc64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/webpack/src/__tests__/integration/bundle-web.integration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import {generateBundle} from './test-helper';
2323
* See https://github.com/assaf/zombie/issues/915
2424
*/
2525
skipIf<[(this: Suite) => void], void>(
26-
process.platform === 'win32', // Skip on Windows
26+
process.platform === 'win32' || process.platform === 'darwin', // Skip on Windows and macOS due to Puppeteer issues
2727
describe,
2828
'bundle-web.js',
2929
() => {

0 commit comments

Comments
 (0)