Skip to content

Commit f0ed2a9

Browse files
committed
Skip the tests requiring the cookie
1 parent 6834459 commit f0ed2a9

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/AdventOfCode.Usage/WithRemoteInput/SolverTest.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ public class SolverTest : TestEngine<Solver, int[], int>
66
{
77
public override Puzzle PartOne => new()
88
{
9+
// Once your cookie set in Configuration.Cookie, you can safely toggle this flag
10+
ShouldSkipTests = true,
11+
912
Example = new()
1013
{
1114
Input = new[] { 199, 200, 208, 210, 200, 207, 240, 269, 260, 263 },
@@ -16,6 +19,9 @@ public class SolverTest : TestEngine<Solver, int[], int>
1619

1720
public override Puzzle PartTwo => new()
1821
{
22+
// Once your cookie set in Configuration.Cookie, you can safely toggle this flag
23+
ShouldSkipTests = true,
24+
1925
Example = new()
2026
{
2127
Input = new[] { 199, 200, 208, 210, 200, 207, 240, 269, 260, 263 },

0 commit comments

Comments
 (0)