Skip to content

Commit

Permalink
fix: fix code formatting according to linting rules
Browse files Browse the repository at this point in the history
  • Loading branch information
tlaukkanen committed Oct 14, 2024
1 parent 65ccf0f commit 09546fc
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/helpers/dependency-files.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,12 @@ describe('getDependencyFile', () => {

const result = await getDependencyFile('/src');
expect(mocks.fileExists).toHaveBeenCalledTimes(3);
expect(mocks.fileExists).toHaveBeenCalledWith(path.join('/src', 'package.json'));
expect(mocks.fileExists).toHaveBeenCalledWith(path.join('/src', 'requirements.txt'));
expect(mocks.fileExists).toHaveBeenCalledWith(
path.join('/src', 'package.json')
);
expect(mocks.fileExists).toHaveBeenCalledWith(
path.join('/src', 'requirements.txt')
);
expect(mocks.fileExists).toHaveBeenCalledWith(path.join('/src', 'Gemfile'));
});

Expand Down

0 comments on commit 09546fc

Please sign in to comment.