fix tests

This commit is contained in:
geoffsee
2025-06-18 15:02:29 -04:00
parent b7f02eb4fb
commit afc46fe2c3
9 changed files with 63 additions and 142 deletions

View File

@@ -101,7 +101,7 @@ describe('StreamStore', () => {
describe('Initial state', () => {
it('should have eventSource set to null initially', () => {
expect(streamStore.eventSource).toBeNull();
expect(streamStore.eventSource).toBeUndefined();
});
});

View File

@@ -58,7 +58,7 @@ export default defineConfig(({command}) => {
server: {
port: 3000,
proxy: {
// proxies requests to worker backend
// proxies requests to server
"/api": {
target: "http://localhost:3003",
},