1
0
Fork 1
mirror of https://github.com/SomboChea/ui synced 2024-05-09 13:01:36 +07:00
verdaccio-ui/codecept.conf.js
Daniel Ruf d468ca7c5f
test: BDD / acceptance tests
Implement acceptance testing using codeceptjs and puppeteer.
2019-05-02 11:15:33 +02:00

23 lines
407 B
JavaScript

exports.config = {
tests: './test/acceptance/*_test.js',
output: './test/acceptance/output',
helpers: {
Puppeteer: {
url: 'http://localhost:8080',
// "show": true,
chrome: {
// headless: false
}
}
},
include: {
I: './test/acceptance/steps_file.js'
},
smartWait: 30000,
bootstrap: null,
plugins: {},
mocha: {},
name: '@verdaccio/ui-theme'
}