Files
twitch-panels/tests/unit/simple.test.ts
T
2026-02-05 04:09:47 +05:00

9 lines
188 B
TypeScript

// Use global test functions without importing vitest
test("basic math", () => {
expect(2 + 2).toBe(4);
});
test("string equality", () => {
expect("hello").toBe("hello");
});