https://github.com/nareshbhatia/stock-charts
Sample application to demonstrate best practices in testing
https://github.com/nareshbhatia/stock-charts
Last synced: 5 months 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 (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-07T22:57:51.000Z (about 4 years ago)
- Last Synced: 2024-12-28T11:30:18.497Z (7 months ago)
- Language: TypeScript
- Size: 2.73 MB
- Stars: 3
- Watchers: 4
- 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:
## 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
```