| 17 | const itMaybe = sandboxEnv && sandboxEnv !== 'false' ? it.skip : it; |
| 18 | |
| 19 | class MockClient implements acp.Client { |
| 20 | updates: acp.SessionNotification[] = []; |
| 21 | sessionUpdate = async (params: acp.SessionNotification) => { |
| 22 | this.updates.push(params); |
| 23 | }; |
| 24 | requestPermission = async (): Promise<acp.RequestPermissionResponse> => { |
| 25 | throw new Error('unexpected'); |
| 26 | }; |
| 27 | } |
| 28 | |
| 29 | describe.skip('ACP Environment and Auth', () => { |
| 30 | let rig: TestRig; |