Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/curtiscde/typescript-tests
๐งช Simple typescript app with failing tests to fix
https://github.com/curtiscde/typescript-tests
Last synced: about 1 month 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 (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-03T14:51:40.000Z (about 2 months ago)
- Last Synced: 2024-11-03T15:32:00.465Z (about 2 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
[![App CI](https://github.com/curtistimson/typescript-tests/actions/workflows/app-ci.yml/badge.svg)](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