(filePath: string)
| 56 | } |
| 57 | |
| 58 | async function fileExists(filePath: string): Promise<boolean> { |
| 59 | try { |
| 60 | await access(filePath); |
| 61 | return true; |
| 62 | } catch { |
| 63 | return false; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | describe('component store boundaries', () => { |
| 68 | it('keeps production component store hooks behind facade modules', async () => { |
no outgoing calls
no test coverage detected