Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 558 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 558 Bytes

Advent of Code Solutions

Build Status

Running Solutions

To run any of the solution files in this repo (after running npm install):

npm start <solution-file>

e.g.

npm start 2019/01/part-1/main.ts

Running Test Specs

Tests are written for Jest to run:

npm test

Or simply

jest

To run tests for a single spec:

npm test -- --t="2020-12-01.1"