Skip to content

Commit 665453c

Browse files
added docs for default resolver (#98)
1 parent 94e5e6b commit 665453c

File tree

12 files changed

+297
-242
lines changed

12 files changed

+297
-242
lines changed

package-lock.json

Lines changed: 74 additions & 82 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"dependencies": {
1717
"@docusaurus/core": "^3.7.0",
1818
"@docusaurus/preset-classic": "^3.7.0",
19-
"@easyops-cn/docusaurus-search-local": "^0.48.3",
19+
"@easyops-cn/docusaurus-search-local": "^0.49.2",
2020
"@mdx-js/react": "^3.1.0",
2121
"clsx": "^2.1.1",
2222
"prism-react-renderer": "^2.4.1",
23-
"react": "^19.0.0",
24-
"react-dom": "^19.0.0"
23+
"react": "^19.1.0",
24+
"react-dom": "^19.1.0"
2525
},
2626
"devDependencies": {
2727
"@docusaurus/module-type-aliases": "^3.7.0"

static/img/memory_autocomplete.png

-193 KB
Binary file not shown.

static/img/po_autocomplete.png

-188 KB
Binary file not shown.

static/img/po_explorer.png

-323 KB
Binary file not shown.

versioned_docs/version-1x/Guides/vscode.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,14 @@ https://marketplace.visualstudio.com/items?itemName=qavajs.qavajs
1010
## Features
1111

1212
- VSCode Test Explorer
13-
- Template Autocomplete
14-
- Constants Autocomplete
15-
- Page Object Autocomplete
16-
- Page Object Explorer
13+
- Steps autocomplete
1714

1815
## Extension Settings
1916

2017
This extension contributes the following settings:
2118

2219
* `cucumber.features`: gherkin files paths (array)
2320
* `cucumber.glue`: step definition file paths (array)
24-
* `qavajs.templates`: templates files paths (array)
25-
* `qavajs.pageObject`: page object root file path (string)
26-
* `qavajs.memory`: memory root file path (string)
2721
* `qavajs.launchCommand`: qavajs launch command (default: `npx qavajs run`) (string)
2822

2923
```json
@@ -41,8 +35,6 @@ This extension contributes the following settings:
4135
"qavajs.templates": [
4236
"templates/*.feature"
4337
],
44-
"qavajs.pageObject": "page_object/index.ts",
45-
"qavajs.memory": "memory/index.ts",
4638
"qavajs.launchCommand": "npx qavajs run --config config.ts",
4739
}
4840
```
@@ -52,19 +44,4 @@ This extension contributes the following settings:
5244
### Test Explorer
5345
![](../../../static/img/test_explorer.png)
5446

55-
### Page Object Explorer
56-
Click the copy icon to copy qavajs path
57-
![](../../../static/img/po_explorer.png)
58-
59-
### Page Object Autocomplete
60-
Type ?
61-
![](../../../static/img/po_autocomplete.png)
62-
63-
### Constants Autocomplete
64-
Type $
65-
![](../../../static/img/memory_autocomplete.png)
66-
67-
## Known Issues and Limitation
68-
69-
* typescript projects require installed `ts-node`
70-
* @qavajs/cli > 0.34.2
47+
## Known Issues and Limitation

0 commit comments

Comments
 (0)