statistiques/src/index.test.ts

9 lines
185 B
TypeScript
Raw Normal View History

2024-06-02 14:34:08 +02:00
import { describe, expect, test } from "@jest/globals";
import { hello } from ".";
describe("module", () => {
test("test hello", () => {
expect(hello()).toBe("hello");
});
});