https://github.com/curtiscde/typescript-tests
🧪 Simple typescript app with failing tests to fix
https://github.com/curtiscde/typescript-tests
Last synced: 4 months ago
JSON representation
🧪 Simple typescript app with failing tests to fix
- Host: GitHub
- URL: https://github.com/curtiscde/typescript-tests
- Owner: curtiscde
- Created: 2021-12-15T12:10:39.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-03T14:51:40.000Z (8 months ago)
- Last Synced: 2025-01-16T12:53:56.487Z (6 months ago)
- Language: TypeScript
- Homepage:
- Size: 691 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Typescript Tests
[](https://github.com/curtistimson/typescript-tests/actions/workflows/app-ci.yml)
Simple typescript app with failing tests to fix
## Getting Started
- Install [VS Code](https://code.visualstudio.com/)
- Install [npm](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)
- Open [VS Code Integrated Terminal](https://code.visualstudio.com/docs/editor/integrated-terminal)
- Clone this Repository to a particular folder
- Go to the root of that folder (`cd typescript-tests`)
- Install node modules: `npm install`
- Run tests: `npm test`## Unskipping Tests
To unskip a test, remove `.skip` from the `describe`:
```
describe.skip('test..') becomes describe('test..')
```## Tests
- sum
- multiply
- getTotalPrice
- orderList