From 0c1410a1c12e3e029c99863e5b37b4121ed36558 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sun, 2 Apr 2023 15:04:31 -0500 Subject: [PATCH] Remove a handful of long-running tests --- tests/game/formulas.test.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/game/formulas.test.ts b/tests/game/formulas.test.ts index 9c77d86..95370f6 100644 --- a/tests/game/formulas.test.ts +++ b/tests/game/formulas.test.ts @@ -263,6 +263,11 @@ describe("Creating Formulas", () => { functionName: T, args: Readonly> ) { + if ((functionName === "slog" || functionName === "layeradd") && args[0] === -1) { + // These cases in particular take a long time, so skip them + // We still have plenty of coverage + return; + } let testName = functionName + "("; for (let i = 0; i < args.length; i++) { if (i !== 0) {