2019-05-02 16:08:41 +07:00
|
|
|
exports.config = {
|
|
|
|
tests: './test/acceptance/*_test.js',
|
|
|
|
output: './test/acceptance/output',
|
|
|
|
helpers: {
|
|
|
|
Puppeteer: {
|
|
|
|
url: 'http://localhost:8080',
|
|
|
|
// "show": true,
|
|
|
|
chrome: {
|
|
|
|
// headless: false
|
2019-08-04 16:40:45 +07:00
|
|
|
},
|
|
|
|
},
|
2019-05-02 16:08:41 +07:00
|
|
|
},
|
|
|
|
include: {
|
2019-08-04 16:40:45 +07:00
|
|
|
I: './test/acceptance/steps_file.js',
|
2019-05-02 16:08:41 +07:00
|
|
|
},
|
|
|
|
smartWait: 30000,
|
|
|
|
bootstrap: null,
|
|
|
|
plugins: {},
|
|
|
|
mocha: {},
|
2019-08-04 16:40:45 +07:00
|
|
|
name: '@verdaccio/ui-theme',
|
|
|
|
};
|