import React from 'react'; import sinon from 'sinon'; import uxpect from 'app/test/unexpected'; import { render, screen } from '@testing-library/react'; import authFlow from 'app/services/authFlow'; import AuthFlowRouteContents from './AuthFlowRouteContents'; describe('AuthFlowRouteContents', () => { beforeEach(() => { sinon.stub(authFlow, 'handleRequest'); }); afterEach(() => { (authFlow.handleRequest as any).restore(); }); let componentProps: { [key: string]: any }; function Component(props: { [key: string]: any }) { componentProps = props; return
; } it('should render component if route allowed', () => { const authRequest = { path: '/path', params: { foo: 1 }, query: new URLSearchParams(), }; const routerProps: any = { location: { pathname: authRequest.path, search: '', query: new URLSearchParams(), }, match: { params: authRequest.params, }, }; (authFlow.handleRequest as any).callsArg(2); render(