(name: string, version: string)
| 114 | // Use private packages with a custom publishCommand: publishable (kept in the plan) but |
| 115 | // not registry-backed, so no `npm info` network call happens in tests. |
| 116 | const publishable = (name: string, version: string) => |
| 117 | makePkg(name, version, { private: true, bumpy: { publishCommand: 'echo publish' } }); |
| 118 | |
| 119 | test('applies sha snapshot versions to each release', async () => { |
| 120 | const packages = new Map([['a', publishable('a', '1.0.0')]]); |
no test coverage detected
searching dependent graphs…