FIX - align NUI test server port

Update the NUI callback test to assert the configured development API default port.\n\nThis restores test coverage after the dev merge changed the test-server default to port 3001.
This commit is contained in:
Type
2026-08-13 11:50:53 +02:00
parent ddc92a18d9
commit bfaf277f5f
+1 -1
View File
@@ -34,7 +34,7 @@ describe('nuiCall', () => {
})
expect(vi.getTimerCount()).toBe(0)
expect(fetchMock).toHaveBeenCalledWith(
'http://localhost:3002/api/test',
'http://localhost:3001/api/test',
expect.objectContaining({ signal: expect.any(AbortSignal) }),
)
})