(folder: string)
| 17 | const relativeTestDir = path.join('src', 'e2e', 'tests', 'generated') |
| 18 | const testDir = path.join(packageRoot, relativeTestDir) |
| 19 | const getFiles = (folder: string): Promise<[string, string[]]> => |
| 20 | fs.readdir(path.join(rootDir, folder)).then((paths) => [folder, paths]) |
| 21 | const examplesBySection = await Promise.all([ |
| 22 | getFiles('edge-middleware'), |
| 23 | getFiles('solutions'), |
no outgoing calls
no test coverage detected