(rootFolderPath: string, configFolderPath?: string)
| 53 | } |
| 54 | |
| 55 | function createWorkspace(rootFolderPath: string, configFolderPath?: string): Workspace { |
| 56 | return { |
| 57 | isWorkspaceFile: false, |
| 58 | workspaceOrFolderPath: rootFolderPath, |
| 59 | rootFolderPath, |
| 60 | configFolderPath: configFolderPath || rootFolderPath, |
| 61 | }; |
| 62 | } |
| 63 | |
| 64 | type TestPlatform = 'linux' | 'darwin' | 'win32'; |
| 65 | const platforms: TestPlatform[] = ['linux', 'darwin', 'win32']; |
no outgoing calls
no test coverage detected