mirror of
https://github.com/bendtherules/some-hooks.git
synced 2026-08-18 13:52:05 +00:00
8 lines
135 B
TypeScript
8 lines
135 B
TypeScript
import { useMyHook } from "./";
|
|
|
|
describe("useMyHook", () => {
|
|
it("is truthy", () => {
|
|
expect(useMyHook).toBeTruthy();
|
|
});
|
|
});
|