Files
Exiled-Exchange-2/renderer/specs/Parser/example.test.ts
Kvan7 b1a8d15f7d v0.4.0 (#268)
* fix russian es

* Features/modTiers (#266)

* Fixes hybrid not selecting by default

* Remove ratio warning banner

* [Not Recognized Modifier] - Note: ~price explicit — Not recognized modifier #255

* feature: Try Pseudos (#261)

* feature: Weighting resistances

* Merge branch 'dev' into master

* Change to button

* Wraps up moving to a button

* Fix bug with "weapon" category

* update parser to remove duplicated ref

* data hopefully not bricked

* version bump
2025-01-10 08:19:59 -06:00

14 lines
263 B
TypeScript

import { expect, test } from "vitest";
import { init } from "@/assets/data";
function sum(a: number, b: number) {
return a + b;
}
test("adds 1 + 2 to equal 3", () => {
expect(sum(1, 2)).toBe(3);
});
test("loadForLang", async () => {
await init("en");
});