Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[No QA][TS migration] Migrate e2e routes to Typescript #36209

Merged
merged 3 commits into from
Mar 4, 2024
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;
Loading