UNPKG
expeditaet
Version:
latest (1.2.0)
1.2.0
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
Advent of Code Solutions
github.com/MariannaBoyle/expeditaet.git
MariannaBoyle/expeditaet
expeditaet
/
solutions
/
typescript
/
2020
/
25
/
src
/
p2.spec.ts
12 lines
(9 loc)
•
240 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ describe, expect, it }
from
'vitest'
;
describe
(
'2020 - Day 25 - Part Two'
,
() =>
{
it
(
'should solve the input'
,
() =>
{
expect
(
0
).
toEqual
(
0
); });
it
(
'should solve the first example'
,
() =>
{
expect
(
0
).
toEqual
(
0
); }); });