Skip to content

Commit

Permalink
fix: resolves JS-0057 instances
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmeese7 committed Sep 26, 2023
1 parent 4e06df5 commit dd18dbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion development/cli/__tests__/tasks/discover.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe("task > package:discover", () => {
const fname = (str) => createPath(root, str);

beforeAll(() => {
jest.spyOn(console, "warn").mockImplementation(() => {});
jest.spyOn(console, "warn").mockImplementation(() => { /* noop */ });
});

afterAll(() => fs.removeSync(root));
Expand Down
2 changes: 1 addition & 1 deletion development/cli/__tests__/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const utils = require("../src/utils.js");

describe("utils", () => {
beforeAll(() => {
jest.spyOn(console, "warn").mockImplementation(() => {});
jest.spyOn(console, "warn").mockImplementation(() => { /* noop */ });
});

describe("createOptions", () => {
Expand Down

0 comments on commit dd18dbe

Please sign in to comment.