Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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 2 months ago
JSON representation

Repo for solving https://adventjs.dev challenges with typescript and Jest

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
```