Skip to content

Commit

Permalink
Tests: Run Gen 9 tests by default
Browse files Browse the repository at this point in the history
  • Loading branch information
thejetou committed Sep 22, 2023
1 parent d34d249 commit b0f2ffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions calc/src/test/helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,12 @@ export function tests(...args: any[]) {
let type: 'skip' | 'only' | undefined = undefined;
if (typeof args[1] !== 'number') {
from = 1;
to = 8;
to = 9;
fn = args[1];
type = args[2];
} else if (typeof args[2] !== 'number') {
from = args[1] as I.GenerationNum ?? 1;
to = 8;
to = 9;
fn = args[2];
type = args[3];
} else {
Expand Down

0 comments on commit b0f2ffb

Please sign in to comment.