forked from profectus/Profectus
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,
|
functionName: T,
|
||||||
args: Readonly<Parameters<typeof Formula[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 + "(";
|
let testName = functionName + "(";
|
||||||
for (let i = 0; i < args.length; i++) {
|
for (let i = 0; i < args.length; i++) {
|
||||||
if (i !== 0) {
|
if (i !== 0) {
|
||||||
|
|
Loading…
Reference in a new issue