Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB committed Apr 21, 2020
1 parent d648f5c commit e1ae49d
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -192,7 +192,7 @@ describe('dependencyExtractor', () => {
"dep2",
);
if (jest.requireActual(\`dep3\`).cond) {}
require
jest
.requireActual('dep4');
// Bad
Expand All @@ -212,7 +212,7 @@ describe('dependencyExtractor', () => {
"dep2",
);
if (jest.requireMock(\`dep3\`).cond) {}
require
jest
.requireMock('dep4');
// Bad
Expand All @@ -232,7 +232,7 @@ describe('dependencyExtractor', () => {
"dep2",
);
if (jest.genMockFromModule(\`dep3\`).cond) {}
require
jest
.requireMock('dep4');
// Bad
Expand Down

0 comments on commit e1ae49d

Please sign in to comment.