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