Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
CoryDanielson authored Sep 16, 2024
1 parent d43a337 commit 57932a1
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@ describe('dependencyExtractor', () => {
} from 'inv8';
import TheDefaultExport, {type foo, type bar} from 'inv9';
`;
expect(extractor.extract(code)).toEqual(new Set(['inv5', 'inv6', 'inv7', 'inv8', 'inv9']));
expect(extractor.extract(code)).toEqual(
new Set(['inv5', 'inv6', 'inv7', 'inv8', 'inv9'])

Check failure on line 114 in packages/jest-haste-map/src/lib/__tests__/dependencyExtractor.test.js

View workflow job for this annotation

GitHub Actions / Lint

Insert `,`
);
});

it('should extract dependencies from `export` statements', () => {
Expand Down

0 comments on commit 57932a1

Please sign in to comment.