https://github.com/remrkabledev/async-and-unit-testing
An introduction to Asynchronous programming and Unit testing
https://github.com/remrkabledev/async-and-unit-testing
Last synced: about 1 year ago
JSON representation
An introduction to Asynchronous programming and Unit testing
- Host: GitHub
- URL: https://github.com/remrkabledev/async-and-unit-testing
- Owner: reMRKableDev
- Created: 2020-03-13T09:51:27.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-06T02:39:58.000Z (over 3 years ago)
- Last Synced: 2025-03-02T00:23:43.475Z (over 1 year ago)
- Language: JavaScript
- Size: 366 KB
- Stars: 2
- Watchers: 1
- Forks: 4
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Asynchronous programming + Unit Testing
Looks at JavaScript Asynchronous programming techniques such as Callbacks, Promises, Async ... Await.
Additionally, introduces unit testing and usage of Jest testing framework.
## Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
### Prerequisites
What things you need installed on your local machine.
```
Text editor (I use VSCode)
NPM
Git
```
### How To:
To use the app:
```
1. Fork and/or Clone repo.
2. Run 'npm install' on your local repo so as to get the required dependencies.
3. Run tests with 'npm test' or 'npm run test'.
```
Have fun :)