diff options
Diffstat (limited to 'packages/cli/src/ui/hooks/useShellHistory.test.ts')
| -rw-r--r-- | packages/cli/src/ui/hooks/useShellHistory.test.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/hooks/useShellHistory.test.ts b/packages/cli/src/ui/hooks/useShellHistory.test.ts index 8d030497..3e2c2dd8 100644 --- a/packages/cli/src/ui/hooks/useShellHistory.test.ts +++ b/packages/cli/src/ui/hooks/useShellHistory.test.ts @@ -67,7 +67,7 @@ describe('useShellHistory', () => { expect(command).toBe('cmd2'); }); - it('should handle a non-existent history file gracefully', async () => { + it('should handle a nonexistent history file gracefully', async () => { const error = new Error('File not found') as NodeJS.ErrnoException; error.code = 'ENOENT'; mockedFs.readFile.mockRejectedValue(error); |
