An open API service indexing awesome lists of open source software.

https://github.com/fullstackacademy/additionalpractice-automatedtesting


https://github.com/fullstackacademy/additionalpractice-automatedtesting

Last synced: 7 months ago
JSON representation

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