Skip to content

Commit

Permalink
[AppShell] Add debug-routes app for baseline tests (#5765)
Browse files Browse the repository at this point in the history
[AppShell] Add `debug-routes` app for baseline tests
  • Loading branch information
artsy-peril[bot] authored Jun 9, 2020
2 parents 4d84a55 + 42a81b5 commit de75ab5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/v2/Apps/Debug/debugRoutes.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import React from "react"

/**
* This route is just for testing baseline page shell stuff -- Lighthouse,
* Calibre, assets loaded on page, and other debugging things that might
* impact global performance.
*/
export const debugRoutes = [
{
path: "/debug",
Component: ({ children }) => children,
children: [
{
path: "baseline",
Component: () => <div>Baseline</div>,
},
],
},
]
6 changes: 6 additions & 0 deletions src/v2/Apps/getAppRoutes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { routes as orderRoutes } from "v2/Apps/Order/routes"
import { routes as purchasesRoutes } from "v2/Apps/Purchase/routes"
import { routes as searchRoutes } from "v2/Apps/Search/routes"
import { routes as viewingRoomRoutes } from "./ViewingRoom/routes"
import { debugRoutes } from "./Debug/debugRoutes"

export function getAppRoutes(): RouteConfig[] {
return buildAppRoutes([
Expand Down Expand Up @@ -43,5 +44,10 @@ export function getAppRoutes(): RouteConfig[] {
{
routes: viewingRoomRoutes,
},

// For debugging baseline app shell stuff
{
routes: debugRoutes,
},
])
}

0 comments on commit de75ab5

Please sign in to comment.