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) {