All the important tests that our website should contain.
- Testers will be needed to create a test github account in order run the SignIn tests successfully.
- We'll be using the npm package config. This package allows us to define a set of default parameters and extend them for different deployment environments.
- In the config folder, you'll find a
default.json
file. This file contains the structure of the config variables and you can see this to get an idea about it. You need to create alocal.json
file in the config folder itself which contains the credentials of your test account and will override the default configuration provided bydefault.json
. - We use puppeteer and jest for testing so please familiarise yourself to these technologies if required.
- Run
yarn
to install the packages - Run
yarn test
to run the tests - If you have multiple tests and want to run just one of them use
jest <test-file-name>
command.
- Before contributing your code, please add the
local.json
file to.gitignore
. - After running all the tests successfully, please delete you test github account as it actually gets added to the RDS database. And we don't need spam accounts in there ;).