How to set up Git

GitLab Repository


https://gitlab.pricefx.eu/logic/qa-training-logic


Useful links

When you want to run local cypress from your command line

node_modules\.bin\cypress run

or

node_modules\\.bin\\cypress run

or

node_modules/.bin/cypress run

https://stackoverflow.com/questions/62991169/run-cypress-test-without-using-the-gui

 

Run only some set of test

https://docs.cypress.io/guides/guides/command-line.html#Commands

 

Example

  • go to your cypress root folder (my root folder is C:\Users\johnr\Documents\qa-training-logic>)

  • Example command when I want to run only tests in folder APILogicFinal:

    • node_modules\.bin\cypress run --spec "cypress/integration/demoPartition/APILoginFinal/*"

How to Access GitLab via SourceTree

https://knowledge.pricefx.com/space/KB/4545315517/How+To+Clone+a+GitLab+Project+Repository

How to .gitignore everything except a few files

https://medium.com/@lynzt/how-to-gitignore-everything-except-a-few-files-6a8f392e1674

 

 

 

Â