Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nareshbhatia/stock-charts
Sample application to demonstrate best practices in testing
https://github.com/nareshbhatia/stock-charts
Last synced: about 4 hours ago
JSON representation
Sample application to demonstrate best practices in testing
- Host: GitHub
- URL: https://github.com/nareshbhatia/stock-charts
- Owner: nareshbhatia
- Created: 2019-04-24T23:47:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-07T22:57:51.000Z (over 3 years ago)
- Last Synced: 2023-03-06T20:53:38.744Z (over 1 year ago)
- Language: TypeScript
- Size: 2.73 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stock Charts
_Stock Charts_ is a sample application to demonstrate best practices in testing.
Hope you will find it useful.
[Feedback welcome!](https://twitter.com/NareshJBhatia)## The Application
The application consists of a single page that displays information about a
stock. Here's a screen shot to give you an idea:![Screen Shot](assets/screen-shot.png)
## Build
```bash
$ yarn
$ yarn start
```Now point your browser to http://localhost:3000/.
## Test
Execute the following command to run tests in interactive mode:
```bash
yarn test
```Execute the following command to run all tests and show test coverage.
```bash
yarn test --watchAll=false --coverage
```