mirror of
https://framagit.org/enfance-libre/statistiques
synced 2025-12-16 22:23:44 +00:00
8 lines
185 B
TypeScript
8 lines
185 B
TypeScript
import { describe, expect, test } from "@jest/globals";
|
|
import { hello } from ".";
|
|
|
|
describe("module", () => {
|
|
test("test hello", () => {
|
|
expect(hello()).toBe("hello");
|
|
});
|
|
});
|