Skip to content

Commit

Permalink
Merge pull request Expensify#36209 from ruben-rebelo/ts-migration/e2e…
Browse files Browse the repository at this point in the history
…-routes

[No QA][TS migration] Migrate e2e routes to Typescript
  • Loading branch information
marcaaron authored Mar 4, 2024
2 parents 6db1843 + aababf0 commit 35244be
Showing 1 changed file with 4 additions and 2 deletions.
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;

0 comments on commit 35244be

Please sign in to comment.