Describe the bug
The documentation can be confusing about how to install UUV.
To Reproduce
Steps to reproduce the behavior:
- Create an empty directory:
mkdir test-uuv
- Go into this directory:
cd test-uuv
- Install UUV as stated in the documentation:
npm install --save-dev @uuv/cypress
- Compare the content of the directory with the contente expected as stated in the documentation
Expected behavior
As stated in the documentation:
uuv/
cypress.config.ts
cypress/
support/
command.ts
.cypress-cucumber-preprocessorrc.json
The real content of the directory is:
node_modules
package.json
package-lock.json
The documentation should mention that the install should be made in an existing npm project. In other words, if the directory is empty, you should create a valid package.json file by creating the file manually or by launching a git init command.
Describe the bug
The documentation can be confusing about how to install UUV.
To Reproduce
Steps to reproduce the behavior:
mkdir test-uuvcd test-uuvnpm install --save-dev @uuv/cypressExpected behavior
As stated in the documentation:
uuv/ cypress.config.ts cypress/ support/ command.ts .cypress-cucumber-preprocessorrc.jsonThe real content of the directory is:
The documentation should mention that the install should be made in an existing npm project. In other words, if the directory is empty, you should create a valid package.json file by creating the file manually or by launching a
git initcommand.