Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
MikuroXina committed Sep 3, 2024
1 parent baf5bb4 commit 266a80c
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/date.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { expect, it } from "vitest";
import { DateString } from "./date";
import React from "react";
import { render } from "../../utils/react-test";

it("renders correctly", () => {
Expand Down
1 change: 1 addition & 0 deletions src/components/footer.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { expect, it } from "vitest";
import { Footer } from "./footer";
import React from "react";
import { render } from "../../utils/react-test";

it("renders correctly", () => {
Expand Down
1 change: 1 addition & 0 deletions src/components/header.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { expect, it } from "vitest";
import { Header } from "./header";
import React from "react";
import { render } from "../../utils/react-test";

it("renders correctly", () => {
Expand Down
1 change: 1 addition & 0 deletions src/components/navigation.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { expect, it } from "vitest";
import { Navigation } from "./navigation";
import React from "react";
import { render } from "../../utils/react-test";

it("renders correctly", () => {
Expand Down
1 change: 1 addition & 0 deletions src/components/prev-next-link.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { expect, it } from "vitest";
import { PrevNextLink } from "./prev-next-link";
import React from "react";
import { render } from "../../utils/react-test";

it("renders both prev and next correctly", () => {
Expand Down
1 change: 1 addition & 0 deletions src/components/questions.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { expect, it } from "vitest";
import { Questions } from "./questions";
import React from "react";
import { render } from "../../utils/react-test";

it("renders correctly", () => {
Expand Down
1 change: 1 addition & 0 deletions src/components/sns-link.test.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { expect, it } from "vitest";
import React from "react";
import { SNSLink } from "./sns-link";
import { render } from "../../utils/react-test";

Expand Down
1 change: 1 addition & 0 deletions src/components/title.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Subtitle, Title } from "./title";
import { expect, it } from "vitest";
import React from "react";
import { render } from "../../utils/react-test";

it("renders title correctly", () => {
Expand Down

0 comments on commit 266a80c

Please sign in to comment.