mirror of
https://github.com/SomboChea/ui
synced 2024-11-04 21:54:30 +07:00
40a25a2507
development keys deps updated add eslint-plugin-codeceptjs to fix eslint issues for acceptant test
22 lines
411 B
JavaScript
22 lines
411 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',
|
|
};
|