Skip to content

Commit

Permalink
correct function on test
Browse files Browse the repository at this point in the history
  • Loading branch information
KevLehman committed Oct 14, 2024
1 parent a610402 commit d61cabc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/i18n/src/index.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ describe('i18n', () => {
jest.spyOn(fs, 'writeFileSync').mockImplementation(() => {});
jest.spyOn(fs, 'readFileSync').mockImplementation(() => JSON.stringify({}));
jest.spyOn(fs, 'existsSync').mockReturnValue(true);
jest.spyOn(fs, 'rmdirSync').mockImplementation(() => {});
jest.spyOn(fs, 'rmSync').mockImplementation(() => {});
});

afterEach(() => {
Expand Down

0 comments on commit d61cabc

Please sign in to comment.