2021-11-16 05:44:45 +08:00
|
|
|
const config = {
|
|
|
|
|
use: {
|
2021-12-22 00:58:04 +08:00
|
|
|
headless: true,
|
2021-11-16 05:44:45 +08:00
|
|
|
browserName: 'chromium',
|
|
|
|
|
launchOptions: {
|
2021-12-22 00:58:04 +08:00
|
|
|
// This bit of delay gives async React time to render
|
|
|
|
|
// and DevTools operations to be sent across the bridge.
|
2021-11-16 05:44:45 +08:00
|
|
|
slowMo: 100,
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = config;
|