(pkgNames: string[])
| 34 | }; |
| 35 | |
| 36 | const withPackages = (pkgNames: string[]) => ({ |
| 37 | ...defaultPackages, |
| 38 | packages: pkgNames.map((pkgName) => ({ |
| 39 | packageJson: { name: pkgName, version: "" }, |
| 40 | dir: "dir", |
| 41 | })), |
| 42 | }); |
| 43 | |
| 44 | test("read reads the config", async () => { |
| 45 | let cwd = await testdir({ |
no outgoing calls
no test coverage detected
searching dependent graphs…