mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-12-17 05:25:58 +00:00
* 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
14 lines
263 B
TypeScript
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");
|
|
});
|