ToolJet/cypress-tests/cypress/webpack.config.js
Midhun Kumar E cf31de35fc
Upgrade Cypres to V10.3.1 (#3651)
* Remove cypress and its dependencies from root dir

* Install cypress to cypress-tests  directory

* Move cypress specs and utils

* Remove older files

* Fix package.json
2022-07-25 10:15:28 +05:30

14 lines
No EOL
418 B
JavaScript

var path = require("path");
module.exports = {
resolve: {
alias: {
Fixtures: path.resolve(__dirname, "fixtures"),
Plugins: path.resolve(__dirname, "plugins"),
Support: path.resolve(__dirname, "support"),
Texts: path.resolve(__dirname, "constants/texts"),
Selectors: path.resolve(__dirname, "constants/selectors"),
Constants: path.resolve(__dirname, "constants")
},
}
};