Skip to content

Commit

Permalink
Prevent failure by adding empty tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cdauth committed Apr 24, 2024
1 parent 54e41bb commit 9bcb312
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion integration-tests/src/socket-v3/history.test.ts
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
// revertHistoryEntry cannot revert a pad data update in non-admin mode

test(() => {
});
7 changes: 6 additions & 1 deletion integration-tests/src/socket-v3/routes.test.ts
Original file line number Diff line number Diff line change
@@ -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
// exportRoute exports a route to GPX

test(() => {
});

0 comments on commit 9bcb312

Please sign in to comment.