https://github.com/fullstackacademy/additionalpractice-automatedtesting
https://github.com/fullstackacademy/additionalpractice-automatedtesting
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fullstackacademy/additionalpractice-automatedtesting
- Owner: FullstackAcademy
- Created: 2023-01-04T19:01:53.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-01-05T15:47:47.000Z (over 3 years ago)
- Last Synced: 2024-12-27T14:09:51.857Z (over 1 year ago)
- Language: JavaScript
- Size: 50.8 KB
- Stars: 1
- Watchers: 10
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# To get started with this repo:
## Clone this repo to your local machine. Install npm packages using npm i
You will be working in two folders for this practice exercise (test, functions).
In the functions folder you will find a file named yourFunctions.js. Here you will write functions that will meet the expectations of the tests found in /test/ourTests.js
In the test folder you will find a file named yourTests.js. Here you will write tests that will meet the needs of the functions that can be found in functions/ourFunctions.js
## **Make sure to remove the x from each test you plan on testing. For example xit => it**
## To run your tests use command: npm run test
## To check test coverage use command: npm run coverage
## You can find a solution to these exercises in the solution branch of this repo