Remove a handful of long-running tests
This commit is contained in:
parent
8dc0c6c55c
commit
0c1410a1c1
1 changed files with 5 additions and 0 deletions
|
@ -263,6 +263,11 @@ describe("Creating Formulas", () => {
|
|||
functionName: T,
|
||||
args: Readonly<Parameters<typeof Formula[T]>>
|
||||
) {
|
||||
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) {
|
||||
|
|
Loading…
Reference in a new issue