Skip to content

Commit bcdde57

Browse files
committed
fix typo in readme
1 parent 241c377 commit bcdde57

File tree

2 files changed

+99
-87
lines changed

2 files changed

+99
-87
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# VSCode Test Utils
22

3-
Test utilities extension for [VSCode](https://code.visualstudio.com/. Currently supports easily adding and removing `.only` and `.skip` modifiers with keyboard shortcuts or the command palette.
3+
Test utilities extension for [VSCode](https://code.visualstudio.com). Currently supports easily adding and removing `.only` and `.skip` modifiers with keyboard shortcuts or the command palette.
44

55
## Available Commands
66

package.json

Lines changed: 98 additions & 86 deletions
Original file line numberDiff line numberDiff line change
@@ -1,89 +1,101 @@
11
{
2-
"name": "test-utils",
3-
"displayName": "Test Utils",
4-
"description": "Add, remove, and move .only in tests",
5-
"version": "0.0.1",
6-
"publisher": "chrisbreiding",
7-
"engines": {
8-
"vscode": "^1.17.0"
9-
},
10-
"scripts": {
11-
"lint": "eslint --fix *.js"
12-
},
13-
"activationEvents": [
14-
"onCommand:extension.addOnly",
15-
"onCommand:extension.removeOnly",
16-
"onCommand:extension.removeAllOnlys",
17-
"onCommand:extension.moveOnly",
18-
"onCommand:extension.addSkip",
19-
"onCommand:extension.removeSkip",
20-
"onCommand:extension.removeAllSkips"
21-
],
22-
"main": "./extension",
23-
"contributes": {
24-
"commands": [
25-
{
26-
"command": "extension.addOnly",
27-
"title": "Add only"
28-
},{
29-
"command": "extension.removeOnly",
30-
"title": "Remove only"
31-
},{
32-
"command": "extension.removeAllOnlys",
33-
"title": "Remove all onlys"
34-
},{
35-
"command": "extension.moveOnly",
36-
"title": "Move only"
37-
},{
38-
"command": "extension.addSkip",
39-
"title": "Add skip"
40-
},{
41-
"command": "extension.removeSkip",
42-
"title": "Remove skip"
43-
},{
44-
"command": "extension.removeAllSkips",
45-
"title": "Remove all skips"
46-
}
2+
"name": "test-utils",
3+
"displayName": "Test Utils",
4+
"description": "Add, remove, and move .only in tests",
5+
"version": "1.0.0",
6+
"publisher": "chrisbreiding",
7+
"engines": {
8+
"vscode": "^1.17.0"
9+
},
10+
"scripts": {
11+
"lint": "eslint --fix *.js"
12+
},
13+
"activationEvents": [
14+
"onCommand:extension.addOnly",
15+
"onCommand:extension.removeOnly",
16+
"onCommand:extension.removeAllOnlys",
17+
"onCommand:extension.moveOnly",
18+
"onCommand:extension.addSkip",
19+
"onCommand:extension.removeSkip",
20+
"onCommand:extension.removeAllSkips"
4721
],
48-
"keybindings": [
49-
{
50-
"command": "extension.addOnly",
51-
"key": "ctrl+alt+a ctrl+alt+o",
52-
"when": "editorTextFocus"
53-
},{
54-
"command": "extension.removeOnly",
55-
"key": "ctrl+alt+r ctrl+alt+o",
56-
"when": "editorTextFocus"
57-
},{
58-
"command": "extension.removeAllOnlys",
59-
"key": "ctrl+alt+x ctrl+alt+o",
60-
"when": "editorTextFocus"
61-
},{
62-
"command": "extension.moveOnly",
63-
"key": "ctrl+alt+m ctrl+alt+o",
64-
"when": "editorTextFocus"
65-
},{
66-
"command": "extension.addSkip",
67-
"key": "ctrl+alt+a ctrl+alt+s",
68-
"when": "editorTextFocus"
69-
},{
70-
"command": "extension.removeSkip",
71-
"key": "ctrl+alt+r ctrl+alt+s",
72-
"when": "editorTextFocus"
73-
},{
74-
"command": "extension.removeAllSkips",
75-
"key": "ctrl+alt+x ctrl+alt+s",
76-
"when": "editorTextFocus"
77-
}
78-
]
79-
},
80-
"devDependencies": {
81-
"typescript": "^2.5.2",
82-
"vscode": "^1.1.5",
83-
"mocha": "^3.5.0",
84-
"eslint": "^4.6.1",
85-
"eslint-plugin-cypress-dev": "^1.0.0",
86-
"@types/node": "^7.0.0",
87-
"@types/mocha": "^2.2.42"
88-
}
22+
"main": "./extension",
23+
"contributes": {
24+
"commands": [
25+
{
26+
"command": "extension.addOnly",
27+
"title": "Add only"
28+
},
29+
{
30+
"command": "extension.removeOnly",
31+
"title": "Remove only"
32+
},
33+
{
34+
"command": "extension.removeAllOnlys",
35+
"title": "Remove all onlys"
36+
},
37+
{
38+
"command": "extension.moveOnly",
39+
"title": "Move only"
40+
},
41+
{
42+
"command": "extension.addSkip",
43+
"title": "Add skip"
44+
},
45+
{
46+
"command": "extension.removeSkip",
47+
"title": "Remove skip"
48+
},
49+
{
50+
"command": "extension.removeAllSkips",
51+
"title": "Remove all skips"
52+
}
53+
],
54+
"keybindings": [
55+
{
56+
"command": "extension.addOnly",
57+
"key": "ctrl+alt+a ctrl+alt+o",
58+
"when": "editorTextFocus"
59+
},
60+
{
61+
"command": "extension.removeOnly",
62+
"key": "ctrl+alt+r ctrl+alt+o",
63+
"when": "editorTextFocus"
64+
},
65+
{
66+
"command": "extension.removeAllOnlys",
67+
"key": "ctrl+alt+x ctrl+alt+o",
68+
"when": "editorTextFocus"
69+
},
70+
{
71+
"command": "extension.moveOnly",
72+
"key": "ctrl+alt+m ctrl+alt+o",
73+
"when": "editorTextFocus"
74+
},
75+
{
76+
"command": "extension.addSkip",
77+
"key": "ctrl+alt+a ctrl+alt+s",
78+
"when": "editorTextFocus"
79+
},
80+
{
81+
"command": "extension.removeSkip",
82+
"key": "ctrl+alt+r ctrl+alt+s",
83+
"when": "editorTextFocus"
84+
},
85+
{
86+
"command": "extension.removeAllSkips",
87+
"key": "ctrl+alt+x ctrl+alt+s",
88+
"when": "editorTextFocus"
89+
}
90+
]
91+
},
92+
"devDependencies": {
93+
"typescript": "^2.5.2",
94+
"vscode": "^1.1.5",
95+
"mocha": "^3.5.0",
96+
"eslint": "^4.6.1",
97+
"eslint-plugin-cypress-dev": "^1.0.0",
98+
"@types/node": "^7.0.0",
99+
"@types/mocha": "^2.2.42"
100+
}
89101
}

0 commit comments

Comments
 (0)