Skip to content

Commit 3954252

Browse files
committed
Updating the readme
1 parent 6449d23 commit 3954252

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ Or you can install from Settings view by searching for `js-test-gen-atom`.
2626

2727
## Extension Settings
2828

29-
| property | type | default | description |
30-
| ------------- | -------------------- | --------- | -------------------------------------------------------------------------------------------------------------------------------- |
31-
| `testDirName` | `string` | `""` | Set the directory name for where the test template will be saved to. If not set, the test will be saved to the current directory |
32-
| `testSufix` | `string` | `".test"` | Appends a string to your test file E.G: 'myfile.test.js' |
33-
| `typeSystem` | `Flow or typescript` | `""` | "Specify if the code the tests are being generated for contain a type system I.E flow/tyescript" |
29+
| property | type | default | description |
30+
| ------------- | -------------------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------- |
31+
| `testDirName` | `string` | `""` | Set the directory name for where the test template will be saved to (E.G. `__tests__`). If not set, the test will be saved to the current directory |
32+
| `testSufix` | `string` | `".test"` | Appends a string to your test file E.G: 'myfile.test.js' |
33+
| `typeSystem` | `Flow or typescript` | `""` | "Specify if the code the tests are being generated for contain a type system I.E flow/tyescript" |
3434

3535
## Key bindings
3636

package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22
"name": "js-test-gen-vscode",
33
"displayName": "js-test-gen-vscode",
44
"description": "Js-test-gen-vscode generates test templates from your default/named exports.",
5-
"version": "0.3.0",
5+
"version": "0.4.0",
66
"publisher": "jsTestGen",
77
"engines": {
88
"vscode": "^1.20.0"
99
},
10-
"repository": "https://github.com/js-test-gen/js-test-gen-vscode",
10+
"repository": {
11+
"url": "https://github.com/js-test-gen/js-test-gen-vscode",
12+
"type": "git"
13+
},
1114
"categories": [
1215
"Other"
1316
],
17+
"icon": "media/jsTestGen.png",
1418
"activationEvents": [
1519
"onCommand:jsTestGen.generateTestTemplate",
1620
"onCommand:jsTestGen.generateTest"

0 commit comments

Comments
 (0)