9 lines
188 B
TypeScript
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");
|
|
});
|