Skip to content

Commit

Permalink
Improved code infrastructure
Browse files Browse the repository at this point in the history
  • Loading branch information
dn54321 committed Jun 30, 2024
1 parent 5cb162a commit 63ef5a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { render } from "@testing-library/react";
import { describe, expect, it } from "vitest";
import { BrokenCloud } from "@components/icon/weather/broken-cloud-icon";
import { BrokenCloud } from "./..";
import { withTestWrapper } from "@utils/wrappers";

describe("Component: broken-cloud-icon", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { render } from "@testing-library/react";
import { describe, expect, it } from "vitest";
import { FewCloudIcon } from "@components/icon/weather/few-cloud-icon"
import { FewCloudIcon } from "./..";

describe("Component: few-cloud-icon", () => {
it("Widget should be able to render.", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { render } from "@testing-library/react";
import { describe, expect, it } from "vitest";
import { OvercastCloud } from "@components/icon/weather/overcast-cloud-icon"
import { OvercastCloud } from "./..";
import { withTestWrapper } from "@utils/wrappers";

describe("Component: overcast-cloud-icon", () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createWeatherMockData } from "@features/weaget/__mocks__/weather.mock";
import { render } from "@testing-library/react";
import { testWrapper } from "@utils/wrappers";
import { OneCallWeatherDetails } from "@features/open-weather-map-one-call/oneCall.type";
import { DailyCompactWeatherWidget } from "@components/widgets/daily-compact-weather-widget";
import { DailyCompactWeatherWidget } from "./..";

describe("Component: daily-compact-weather-widget", () => {
let weatherData: OneCallWeatherDetails;
Expand Down

0 comments on commit 63ef5a2

Please sign in to comment.