Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/natserract/unit-test-javascript
🚀 Build your own Jest using pure Javascript
https://github.com/natserract/unit-test-javascript
babel es6 javascript nodemon unit-testing
Last synced: 30 days ago
JSON representation
🚀 Build your own Jest using pure Javascript
- Host: GitHub
- URL: https://github.com/natserract/unit-test-javascript
- Owner: natserract
- Created: 2019-12-14T02:48:40.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T02:58:44.000Z (about 2 years ago)
- Last Synced: 2024-04-28T06:27:31.729Z (9 months ago)
- Topics: babel, es6, javascript, nodemon, unit-testing
- Language: JavaScript
- Homepage:
- Size: 134 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Unit Test Using Pure Javascript
Learn how automated JavaScript testing works by building your own unit testing framework!Required packages:
- nodemon
- babel-cliOrder of material:
1. `index.js`
2. `utils.js`
3. `utils.test.js`
4. `mock.test.js`The files are intended to test the `utils` module.
To run the files, run `npm run test-watch`.
> For the `global` one, run `npm run global-test-watch`