All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.cypress-configs.resolve.js Maven / Gradle / Ivy

Go to download

A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.

There is a newer version: 4.12.3
Show newest version
const path = require("path");

const basePath = `${process.cwd()}/cypress/`;

module.exports = {
  alias: {
    Fixtures: path.resolve(basePath, "fixtures"),
    Plugins: path.resolve(basePath, "plugins"),
    Support: path.resolve(basePath, "support"),
    Texts: path.resolve(basePath, "constants/texts"),
    Selectors: path.resolve(basePath, "constants/selectors"),
    neetocommons: "@bigbinary/neeto-commons-frontend",
    Constants: path.resolve(basePath, "constants"),
    neetocist: "@bigbinary/neeto-cist",
  },
  fallback: { path: require.resolve("path-browserify") },
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy