Added basic tests for testing a real websocket

This commit is contained in:
Niklas Jensen
2025-12-30 19:33:30 +01:00
committed by nikguin04
parent c4d3c8966c
commit 8098dcec9b
5 changed files with 169 additions and 15 deletions
+6 -6
View File
@@ -1,8 +1,8 @@
declare module 'app-env' {
interface ENV {
VITE_USE_HOST_NAME: boolean
}
declare module "app-env" {
interface ENV {
VITE_USE_HOST_NAME: boolean;
}
const appEnv: ENV
export default appEnv
const appEnv: ENV;
export default appEnv;
}