This is a starter boilerplate for candidates attending the Gurukul sessions.
git clone [email protected]:CoffeeBeansLabs/gurukul-starter.git gurukul-jan22
# remove the origin of this repo in your project
git remote rm origin
# verify there are no remote links in your projects
git remote -v
Now you can create a repository in you github/gitlab account and push the changes there.
This is a Nodejs based project. You will need to have node installed in your machine.
npm install
There are multiple ways of writing test files and all depends on how you'd like to see the tests for your code.
- Writing test files in the
__tests__
folder where you keep all your test files.- e.g.
src/logic.js
, &__tests__/logic.test.js
- e.g.
npm run test