Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sundowndev
GitHub Repository: sundowndev/phoneinfoga
Path: blob/master/web/client/tests/e2e/plugins/index.js
994 views
1
/* eslint-disable arrow-body-style */
2
// https://docs.cypress.io/guides/guides/plugins-guide.html
3
4
// if you need a custom webpack configuration you can uncomment the following import
5
// and then use the `file:preprocessor` event
6
// as explained in the cypress docs
7
// https://docs.cypress.io/api/plugins/preprocessors-api.html#Examples
8
9
// /* eslint-disable import/no-extraneous-dependencies, global-require */
10
// const webpack = require('@cypress/webpack-preprocessor')
11
12
module.exports = (on, config) => {
13
// on('file:preprocessor', webpack({
14
// webpackOptions: require('@vue/cli-service/webpack.config'),
15
// watchOptions: {}
16
// }))
17
18
return Object.assign({}, config, {
19
fixturesFolder: "tests/e2e/fixtures",
20
integrationFolder: "tests/e2e/specs",
21
screenshotsFolder: "tests/e2e/screenshots",
22
videosFolder: "tests/e2e/videos",
23
supportFile: "tests/e2e/support/index.js",
24
});
25
};
26
27