Update and resolves tests
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
import { render, screen, cleanup } from "@testing-library/react";
|
||||
import { describe, test, expect, afterEach } from "vitest";
|
||||
import LogoWall from "../../app/components/LogoWall";
|
||||
import LogoWall from "../../app/components/sections/LogoWall";
|
||||
|
||||
afterEach(() => {
|
||||
cleanup();
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { render, screen } from "@testing-library/react";
|
||||
import { describe, it, expect } from "vitest";
|
||||
import NumberCard from "../../app/components/NumberCard";
|
||||
import NumberCard from "../../app/components/cards/NumberCard";
|
||||
|
||||
describe("NumberCard Component", () => {
|
||||
const defaultProps = {
|
||||
|
||||
@@ -4,7 +4,7 @@ import {
|
||||
cleanup,
|
||||
} from "../utils/test-utils";
|
||||
import { describe, test, expect, afterEach } from "vitest";
|
||||
import NumberedCards from "../../app/components/NumberedCards";
|
||||
import NumberedCards from "../../app/components/sections/NumberedCards";
|
||||
|
||||
afterEach(() => {
|
||||
cleanup();
|
||||
|
||||
@@ -4,7 +4,7 @@ import {
|
||||
cleanup,
|
||||
} from "../utils/test-utils";
|
||||
import { vi, describe, test, expect, afterEach } from "vitest";
|
||||
import QuoteBlock from "../../app/components/QuoteBlock";
|
||||
import QuoteBlock from "../../app/components/sections/QuoteBlock";
|
||||
|
||||
afterEach(() => {
|
||||
cleanup();
|
||||
|
||||
Reference in New Issue
Block a user