(app: typeof MockWorkspaceApp)
| 8 | import { AppLink } from "./AppLink"; |
| 9 | |
| 10 | const renderAppLink = (app: typeof MockWorkspaceApp) => { |
| 11 | return renderWithAuth( |
| 12 | <AppLink app={app} workspace={MockWorkspace} agent={MockWorkspaceAgent} />, |
| 13 | ); |
| 14 | }; |
| 15 | |
| 16 | // Regression test for https://github.com/coder/coder/issues/18573: |
| 17 | // open_in="tab" was not opening links in a new tab. |
no test coverage detected