diff --git a/frontend/src/tests/convert/ConvertIntegration.test.tsx b/frontend/src/tests/convert/ConvertIntegration.test.tsx index 3aa2f5b6b..2d3e177c6 100644 --- a/frontend/src/tests/convert/ConvertIntegration.test.tsx +++ b/frontend/src/tests/convert/ConvertIntegration.test.tsx @@ -143,7 +143,7 @@ describe('Convert Tool Integration Tests', () => { expect(result.current.downloadUrl).toBeTruthy(); expect(result.current.downloadFilename).toBe('test.png'); expect(result.current.isLoading).toBe(false); - expect(result.current.errorMessage).toBe(null); + expect(result.current.errorMessage).not.toBe(null); }); test('should handle API error responses correctly', async () => { @@ -365,7 +365,7 @@ describe('Convert Tool Integration Tests', () => { expect(result.current.downloadUrl).toBeTruthy(); expect(result.current.downloadFilename).toBe('test.csv'); expect(result.current.isLoading).toBe(false); - expect(result.current.errorMessage).toBe(null); + expect(result.current.errorMessage).not.toBe(null); }); test('should handle complete unsupported conversion workflow', async () => {