Commit b87353a 1 parent ad3a1de commit b87353a Copy full SHA for b87353a
File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -6,3 +6,4 @@ yarn.lock
6
6
/vscode.d.ts
7
7
/vscode.proposed.d.ts
8
8
/example /package-lock.json
9
+ .DS_Store
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " playwright-vscode " ,
2
+ "name" : " playwright" ,
3
3
"displayName" : " Playwright Test for VSCode" ,
4
4
"description" : " Integration of Playwright Test and Visual Studio Code." ,
5
5
"icon" : " images/playwright-logo.png" ,
22
22
"contributes" : {
23
23
"commands" : [
24
24
{
25
- "command" : " playwright-vscode .selectProject" ,
25
+ "command" : " playwright.selectProject" ,
26
26
"title" : " Select Playwright Test project"
27
27
}
28
28
],
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export async function activate(context: vscode.ExtensionContext) {
127
127
playwrightTest . setProject ( selection . label ) ;
128
128
} ;
129
129
context . subscriptions . push (
130
- vscode . commands . registerCommand ( 'playwright-vscode .selectProject' , commandHandler )
130
+ vscode . commands . registerCommand ( 'playwright.selectProject' , commandHandler )
131
131
) ;
132
132
}
133
133
You can’t perform that action at this time.
0 commit comments