Skip to content

Commit

Permalink
test(util): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
manushak committed Aug 14, 2024
1 parent fe5cb1a commit 335cfe7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/__tests__/if-merge/util/helpers.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ jest.mock('../../../if-run/builtins/export-yaml', () => ({
}));

describe('if-merge/util/helpers: ', () => {
const consopleSpy = jest.spyOn(global.console, 'log');
const consoleSpy = jest.spyOn(global.console, 'log');

beforeEach(() => {
consopleSpy.mockReset();
consoleSpy.mockReset();
});

describe('mergeManifests(): ', () => {
Expand Down Expand Up @@ -149,7 +149,7 @@ describe('if-merge/util/helpers: ', () => {
await mergeManifests(mockCommandArgs);

expect.assertions(1);
expect(consopleSpy).toHaveBeenCalledTimes(2);
expect(consoleSpy).toHaveBeenCalledTimes(2);
});

it('gets YAML files when there is only one manifest.', async () => {
Expand Down

0 comments on commit 335cfe7

Please sign in to comment.