Skip to content
This repository was archived by the owner on Jan 19, 2025. It is now read-only.

Commit c333731

Browse files
committed
Fi types 🚀
1 parent dd66e0a commit c333731

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

__tests__/head.test.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ describe("<Head />", () => {
7171
/>
7272
);
7373

74-
const helmet: HelmetData = Helmet.peek();
74+
const helmet = Helmet.peek();
7575

7676
expect(helmet.title).toEqual("a custom title");
7777
});
@@ -87,7 +87,7 @@ describe("<Head />", () => {
8787
/>
8888
);
8989

90-
const helmet: HelmetData = Helmet.peek();
90+
const helmet = Helmet.peek();
9191

9292
expect(helmet.title).toEqual(
9393
"Fabrizio Duroni | Fabrizio Duroni ‘Chicio Coding’"
@@ -107,7 +107,7 @@ describe("<Head />", () => {
107107
/>
108108
);
109109

110-
const helmet: HelmetData = Helmet.peek();
110+
const helmet = Helmet.peek();
111111

112112
expect(helmet.htmlAttributes).toEqual({ lang: "en" });
113113
});

0 commit comments

Comments
 (0)