statistiques/src/index.test.ts
2024-06-02 14:34:08 +02:00

8 lines
185 B
TypeScript

import { describe, expect, test } from "@jest/globals";
import { hello } from ".";
describe("module", () => {
test("test hello", () => {
expect(hello()).toBe("hello");
});
});