screen sharing working

This commit is contained in:
2026-03-30 17:41:54 -04:00
parent 76ed6d7ab3
commit ec66d6a9e6
62 changed files with 6727 additions and 3346 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
import { defineConfig } from 'vitest/config';
import react from '@vitejs/plugin-react';
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
test: {
globals: true,
environment: 'jsdom', // or "node" if you're not testing DOM
setupFiles: './src/setupTests.ts',
environment: "jsdom", // or "node" if you're not testing DOM
setupFiles: "./src/setupTests.ts",
testTimeout: 15_000, // give extra time for real connections
hookTimeout: 15_000,
},