diff --git a/integration-tests/src/socket-v3/history.test.ts b/integration-tests/src/socket-v3/history.test.ts index 10a565ae..02307689 100644 --- a/integration-tests/src/socket-v3/history.test.ts +++ b/integration-tests/src/socket-v3/history.test.ts @@ -1,3 +1,5 @@ +import { test } from "vitest"; + // listenToHistory returns all past history events and transmits all future history events // stopListeningToHistory stops transmitting future history events // revertHistoryEntry reverts a marker creation @@ -19,4 +21,7 @@ // revertHistoryEntry cannot revert type update in non-admin mode // revertHistoryEntry cannot revert type deletion in non-admin mode // revertHistoryEntry reverts a pad data update -// revertHistoryEntry cannot revert a pad data update in non-admin mode \ No newline at end of file +// revertHistoryEntry cannot revert a pad data update in non-admin mode + +test(() => { +}); \ No newline at end of file diff --git a/integration-tests/src/socket-v3/routes.test.ts b/integration-tests/src/socket-v3/routes.test.ts index 7a583cc9..23974672 100644 --- a/integration-tests/src/socket-v3/routes.test.ts +++ b/integration-tests/src/socket-v3/routes.test.ts @@ -1,7 +1,12 @@ +import { test } from "vitest"; + // getRoute returns calculated route // With route ID and without route ID: // setRoute calculates route and transmits track points for initial bbox and for updated bbox // setRoute updates route and transmits track points for initial bbox and for updated bbox // clearRoute clears route and does not transmit track points on bbox update anymore // lineToRoute converts a line to a route - // exportRoute exports a route to GPX \ No newline at end of file + // exportRoute exports a route to GPX + +test(() => { +}); \ No newline at end of file