ToolJet/cypress/webpack.config.js
Ajith KV 794e708e6a
Updated cypress folder structure (#2909)
* Removed outdated cypress tests

* Updated cypress folder structure
2022-04-26 19:30:01 +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")
},
}
};