@badeball/cypress-configuration
v6.1.1
Published
[![Build status](https://github.com/badeball/cypress-configuration/actions/workflows/build.yml/badge.svg)](https://github.com/badeball/cypress-configuration/actions/workflows/build.yml) [![Npm package weekly downloads](https://badgen.net/npm/dw/@badeball/
Downloads
1,384,087
Maintainers
Readme
cypress-configuration
A re-implementation of Cypress' configuration resolvement and search for test files. These mechanisms aren't exposed by Cypress, but are nonetheless necessary for EG. @badeball/cypress-cucumber-preprocessor, @badeball/cypress-parallel and the upcoming VSCode extention for the Cypress + Cucumber integration.
Installation
$ npm install @badeball/cypress-configuration
Usage
import { getConfiguration } from "@badeball/cypress-configuration";
const { fixturesFolder, integrationFolder } = getConfiguration({
cwd: process.cwd(),
env: process.env,
argv: ["--config", "integrationFolder=cypress/custom-location"]
});
console.log(fixturesFolder); // => "cypress/fixtures"
console.log(integrationFolder); // => "cypress/custom-location"