mirror of
https://github.com/NLnetLabs/krill.git
synced 2026-09-20 16:37:43 +02:00
Testbed mode should be more liberal in handling formatting variations in child and publisher registration XML. Synced with Lagosta commit d94470db. (#369, #403)
26 lines
916 B
JavaScript
26 lines
916 B
JavaScript
/* eslint-disable arrow-body-style */
|
|
// https://docs.cypress.io/guides/guides/plugins-guide.html
|
|
|
|
// if you need a custom webpack configuration you can uncomment the following import
|
|
// and then use the `file:preprocessor` event
|
|
// as explained in the cypress docs
|
|
// https://docs.cypress.io/api/plugins/preprocessors-api.html#Examples
|
|
|
|
// /* eslint-disable import/no-extraneous-dependencies, global-require */
|
|
// const webpack = require('@cypress/webpack-preprocessor')
|
|
|
|
module.exports = (on, config) => {
|
|
// on('file:preprocessor', webpack({
|
|
// webpackOptions: require('@vue/cli-service/webpack.config'),
|
|
// watchOptions: {}
|
|
// }))
|
|
|
|
return Object.assign({}, config, {
|
|
fixturesFolder: 'test-resources',
|
|
integrationFolder: 'tests/ui/cypress/specs',
|
|
screenshotsFolder: 'target/ui/screenshots',
|
|
videosFolder: 'target/ui/videos',
|
|
supportFile: 'tests/ui/cypress/support/index.js'
|
|
})
|
|
}
|