()
| 46 | }); |
| 47 | |
| 48 | function newStore() { |
| 49 | return createPerIdJsonStore<Sample>({ |
| 50 | rootDir, |
| 51 | subdir: 'things', |
| 52 | idRegex: ID_REGEX, |
| 53 | isValid: isSample, |
| 54 | }); |
| 55 | } |
| 56 | |
| 57 | describe('createPerIdJsonStore', () => { |
| 58 | it('round-trips a value via write/read', async () => { |
no test coverage detected