mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
17 lines
282 B
JavaScript
17 lines
282 B
JavaScript
// jest-puppeteer.config.js
|
|
require('dotenv').config()
|
|
|
|
const port = process.env.PUPPETEER_PORT
|
|
|
|
module.exports = {
|
|
server: {
|
|
command: `http-server --port ${port} ./www`,
|
|
port: port,
|
|
launchTimeout: 5000
|
|
},
|
|
|
|
launch: {
|
|
dumpio: true,
|
|
headless: false,
|
|
},
|
|
} |