(id: string)
| 79 | } |
| 80 | |
| 81 | async function registerStoreFixture(id: string): Promise<string> { |
| 82 | const root = path.join(tempDir, 'stores', id); |
| 83 | createOpenSpecRoot(root); |
| 84 | await registerStore({ id, localPath: root, globalDataDir }); |
| 85 | return fs.realpathSync.native(root); |
| 86 | } |
| 87 | |
| 88 | function createChange( |
| 89 | rootDir: string, |
no test coverage detected