Skip to content

Commit

Permalink
Using the mocked method from jest instead of ts-jest
Browse files Browse the repository at this point in the history
  • Loading branch information
marekdedic committed Dec 7, 2021
1 parent 7c86679 commit 269aea7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __tests__/backend/move.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { mocked } from "ts-jest/utils";
import { mocked } from "jest-mock";

import { move } from "../../src/backend/move";

Expand Down
2 changes: 1 addition & 1 deletion __tests__/backend/move/moveFile.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { mocked } from "ts-jest/utils";
import { mocked } from "jest-mock";

import { moveFile_ } from "../../../src/backend/move/moveFile";

Expand Down
2 changes: 1 addition & 1 deletion __tests__/backend/move/moveFolderContents.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { mocked } from "ts-jest/utils";
import { mocked } from "jest-mock";

import { moveFolderContents_ } from "../../../src/backend/move/moveFolderContents";

Expand Down
2 changes: 1 addition & 1 deletion __tests__/backend/move/resolveDestinationFolder.test.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { mocked } from "ts-jest/utils";
import { mocked } from "jest-mock";

import { resolveDestinationFolder_ } from "../../../src/backend/move/resolveDestinationFolder";

Expand Down

0 comments on commit 269aea7

Please sign in to comment.