Nuxt/examples/jest-puppeteer/jest-puppeteer.config.js
awronski 106141f74c feat: jest-puppeteer example (#4163)
* feat: jest-puppeteer example

* - Refactor test

* - lint

* - lint

* - eslint-disable no-undef
2018-10-25 19:44:09 +02:00

11 lines
177 B
JavaScript
Executable File

module.exports = {
launch: {
headless: process.env.HEADLESS !== 'false'
},
server: {
command: 'npm run testServer',
port: 3000,
launchTimeout: 50000
}
}