akbelcolak / language-platform

Heroku
https://language-platform.herokuapp.com/
1 stars 2 forks source link

[infra] Add test framework #39

Closed mmelcot closed 4 years ago

mmelcot commented 4 years ago

Fix #40

I added the necessary configuration to have tests in BE and FE.

To run tests in BE:

npm run test:watch  // This will check only the new code and auto run tests when something changes
npm run test

To run tests in FE:

cd client
npm run test:watch  // This will check only the new code and auto run tests when something changes
npm run test

I also added a CircleCI configuration so that your tests can run each time you push a commit to github.
You need to create an account in CircleCI and link it with your project.

akbelcolak commented 4 years ago

I have signed up with CircleCI and added configuration for Node