equinor / attenuation-app

0 stars 0 forks source link

TestPlan context #11

Closed tormodAase closed 4 days ago

tormodAase commented 5 days ago

-Should expose a navigateNext function, to navigate to next page -Should expose progress. -Should be able to set test plan.

Should have an interface inspired by this:

interface TestPlan {
    navigateNext: () => void,
    current: {title: string, Component: React.Component},
    progress: number
    setTestPlan: (testPlan: unknown) => void
}