(pkg: string, root: string)
| 27 | |
| 28 | export default (parentServer: ParentBrowserProject, base = '/'): Plugin[] => { |
| 29 | function isPackageExists(pkg: string, root: string) { |
| 30 | return parentServer.vitest.packageInstaller.isPackageExists?.(pkg, { |
| 31 | paths: [root], |
| 32 | }) |
| 33 | } |
| 34 | |
| 35 | return [ |
| 36 | { |
no test coverage detected