Skip to content

Commit b87353a

Browse files
committed
chore: adjust extension metadata
1 parent ad3a1de commit b87353a

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ yarn.lock
66
/vscode.d.ts
77
/vscode.proposed.d.ts
88
/example/package-lock.json
9+
.DS_Store

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "playwright-vscode",
2+
"name": "playwright",
33
"displayName": "Playwright Test for VSCode",
44
"description": "Integration of Playwright Test and Visual Studio Code.",
55
"icon": "images/playwright-logo.png",
@@ -22,7 +22,7 @@
2222
"contributes": {
2323
"commands": [
2424
{
25-
"command": "playwright-vscode.selectProject",
25+
"command": "playwright.selectProject",
2626
"title": "Select Playwright Test project"
2727
}
2828
],

src/extension.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export async function activate(context: vscode.ExtensionContext) {
127127
playwrightTest.setProject(selection.label);
128128
};
129129
context.subscriptions.push(
130-
vscode.commands.registerCommand('playwright-vscode.selectProject', commandHandler)
130+
vscode.commands.registerCommand('playwright.selectProject', commandHandler)
131131
);
132132
}
133133

0 commit comments

Comments
 (0)