Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Judahmeek committed Aug 29, 2024
1 parent 9594c96 commit 36052fa
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion test/package/development.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jest.mock("../../../package/utils/helpers", () => {
const moduleExists = () => false
return {
...original,
moduleExists,
moduleExists
}
})

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

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

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

Expand Down
4 changes: 2 additions & 2 deletions test/package/index.test.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const index = require("../../package/index")

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

Expand Down
4 changes: 2 additions & 2 deletions test/package/production.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const { chdirTestApp } = require("../helpers")
const rootPath = process.cwd()
chdirTestApp()

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

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

Expand Down
2 changes: 1 addition & 1 deletion test/package/rules/sass1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jest.mock("../../../package/utils/helpers", () => {
}
return {
...original,
canProcess,
canProcess
}
})

Expand Down
4 changes: 2 additions & 2 deletions test/package/staging.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const { chdirTestApp } = require("../helpers")
const rootPath = process.cwd()
chdirTestApp()

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

Expand Down
4 changes: 2 additions & 2 deletions test/package/test.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ const { chdirTestApp } = require("../helpers")
const rootPath = process.cwd()
chdirTestApp()

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

Expand Down

0 comments on commit 36052fa

Please sign in to comment.