Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions tests/e2e/server/routes.js → tests/e2e/server/routes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export default {
const routes = {
// The app calls this endpoint to know which test to run
testConfig: '/test_config',

Expand All @@ -16,4 +16,6 @@ export default {

// Gets the network cache
testGetNetworkCache: '/test_get_network_cache',
};
} satisfies Record<string, string>;

export default routes;