Skip to content

Commit

Permalink
fix: path for unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mauroreisvieira committed Jan 7, 2025
1 parent b7483ff commit 1a10cf3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/utilities/__tests__/unit/class-names.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { classNames } from "../index";
import { classNames } from "../../index";

describe("classNames function", () => {
it("should return an empty string if all arguments are falsy", () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/__tests__/unit/focus-trap.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FocusTrap } from "../index";
import { FocusTrap } from "../../index";
// Utilities
import { fireEvent } from "@testing-library/react";

Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/__tests__/unit/is-array.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { isArray } from "../index";
import { isArray } from "../../index";

describe("isArray", () => {
it("should return true for an array of numbers", () => {
Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/__tests__/unit/platform.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
isChrome,
isWebKit,
isAndroid
} from "../index";
} from "../../index";

describe("Platform and Browser Detection", () => {
beforeEach(() => {
Expand Down
2 changes: 1 addition & 1 deletion packages/utilities/__tests__/unit/sort.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { sortData, SortDirection } from "../index";
import { sortData, SortDirection } from "../../index";

interface Item {
id: number;
Expand Down

0 comments on commit 1a10cf3

Please sign in to comment.