Skip to content

Commit

Permalink
[AppShell] Add debug-routes app for baseline tests
Browse files Browse the repository at this point in the history
  • Loading branch information
damassi committed Jun 9, 2020
1 parent d17d03c commit 5102133
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/v2/Apps/Debug/debugRoutes.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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-routes",
Component: () => <div>Baseline test</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 5102133

Please sign in to comment.