Skip to content

Commit

Permalink
more linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Aug 29, 2024
1 parent 36052fa commit ba7d6bc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion test/package/index.test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const index = require("../../package/index")

jest.mock("../../package/utils/helpers", () => {
const original = jest.requireActual("../../../package/utils/helpers")
const original = jest.requireActual("../../package/utils/helpers")
const moduleExists = () => false
return {
...original,
Expand Down
2 changes: 1 addition & 1 deletion test/package/production.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const rootPath = process.cwd()
chdirTestApp()

jest.mock("../../package/utils/helpers", () => {
const original = jest.requireActual("../../../package/utils/helpers")
const original = jest.requireActual("../../package/utils/helpers")
const moduleExists = () => false
return {
...original,
Expand Down
2 changes: 1 addition & 1 deletion test/package/staging.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const rootPath = process.cwd()
chdirTestApp()

jest.mock("../../package/utils/helpers", () => {
const original = jest.requireActual("../../../package/utils/helpers")
const original = jest.requireActual("../../package/utils/helpers")
const moduleExists = () => false
return {
...original,
Expand Down
2 changes: 1 addition & 1 deletion test/package/test.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const rootPath = process.cwd()
chdirTestApp()

jest.mock("../../package/utils/helpers", () => {
const original = jest.requireActual("../../../package/utils/helpers")
const original = jest.requireActual("../../package/utils/helpers")
const moduleExists = () => false
return {
...original,
Expand Down

0 comments on commit ba7d6bc

Please sign in to comment.