cosmos-explorer/jest-puppeteer.config.js

10 lines
148 B
JavaScript
Raw Permalink Normal View History

2020-06-24 20:07:01 +01:00
const isCI = require("is-ci");
module.exports = {
launch: {
headless: isCI,
slowMo: isCI ? null : 20,
2020-07-02 05:33:09 +01:00
defaultViewport: null,
},
2020-06-24 20:07:01 +01:00
};