Change formula testing values to hopefully catch any other miscalculations

This commit is contained in:
thepaperpilot 2023-05-19 08:04:04 -05:00
parent a5efed6e4a
commit e896fd84cf

View file

@ -13,7 +13,7 @@ import { InvertibleIntegralFormula } from "game/formulas/types";
type FormulaFunctions = keyof GenericFormula & keyof typeof Formula & keyof typeof Decimal;
const testValues = [-1, "0", Decimal.dOne] as const;
const testValues = [-2, "0", new Decimal(10.5)] as const;
const invertibleZeroParamFunctionNames = [
"neg",