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

[AppShell] Add debug-routes app for baseline tests #5765

Merged
merged 1 commit into from
Jun 9, 2020
Merged
Show file tree
Hide file tree
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
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,
},
])
}