Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carseven/adventjs
Repo for solving https://adventjs.dev challenges with typescript and Jest
https://github.com/carseven/adventjs
advent-of-code algorithms javascript jest test testing typescript unit-testing
Last synced: about 7 hours ago
JSON representation
Repo for solving https://adventjs.dev challenges with typescript and Jest
- Host: GitHub
- URL: https://github.com/carseven/adventjs
- Owner: carseven
- Created: 2021-12-14T21:53:03.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-28T12:48:23.000Z (almost 2 years ago)
- Last Synced: 2024-11-03T11:32:03.047Z (14 days ago)
- Topics: advent-of-code, algorithms, javascript, jest, test, testing, typescript, unit-testing
- Language: TypeScript
- Homepage:
- Size: 202 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# adventJS
Repo for solving https://adventjs.dev challenges with typescript and Jest
## Install
```bash
npm install
```## Run all test
```bash
npm run test
```## Run specific test
### Install globally
```bash
npm i -g jest-cli# Launch year test
jest 2022# Launch specific file test
jest 2022/day1.test.ts
```### Use npx command
```bash
# Launch year test
npx jest 2022# Launch specific file test
npx jest 2022/day1.test.ts
```