We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b71c40a commit 7747790Copy full SHA for 7747790
1 file changed
packages/vscode-wdio-config/tests/find.test.ts
@@ -64,12 +64,6 @@ describe('findWdioConfig', () => {
64
// Setup
65
const accessibleFile = path.join(mockWorkspaceRoot, 'wdio.conf.js')
66
67
- // vi.mocked(vscode.workspace.findFiles).mockImplementation(async (p:vscode.GlobPattern)=>{
68
- // if (p.toString() === accessibleFile) {
69
- // return [vscode.Uri.file(p.toString())]
70
- // }
71
- // return []
72
- // })
73
vi.mocked(vscode.workspace.findFiles).mockImplementation(async (p: vscode.GlobPattern) => {
74
return [vscode.Uri.file(p.toString())]
75
})
0 commit comments