https://github.com/verlok/renderimage
RenderImage source and test cases - tested with Jest
https://github.com/verlok/renderimage
Last synced: 7 months ago
JSON representation
RenderImage source and test cases - tested with Jest
- Host: GitHub
- URL: https://github.com/verlok/renderimage
- Owner: verlok
- Created: 2017-04-19T21:08:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T21:19:50.000Z (over 8 years ago)
- Last Synced: 2025-01-24T18:22:45.749Z (9 months ago)
- Language: JavaScript
- Size: 1.95 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# renderImage
RenderImage source and test cases - tested with Jest
## Files
* renderImage.js - code to render image tags
* renderImage.spec.js - the tests, 8 test cases to check the code## How to test
Tests are run using [Jest](https://facebook.github.io/jest/).
Install the dependencies with `npm install`, then run the tests with:```
npm test
```Or, to keep watching code and run tests accordingly:
```
npm test -- --watch
```