Skip to content

Commit 9e2733d

Browse files
docs(test-runners.md): add WebStorm comment (#2279)
1 parent 125312f commit 9e2733d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/test-runners.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,9 @@ If using TypeScript, add types to your variables like:
105105
let page: import('playwright').Page;
106106
```
107107

108-
If using JavaScript, you can still get nice autocompletions in VSCode by using JSDOC
108+
If using JavaScript, you can still get nice autocompletions in VSCode or WebStorm by using JSDoc.
109109
```js
110-
/** @type {import('playwright').Page} **/
110+
/** @type {import('playwright').Page} */
111111
let page;
112112
```
113113

@@ -125,4 +125,4 @@ beforeAll(async() => {
125125
```
126126

127127
Then set `BROWSER=firefox` to run your tests with firefox, or any other browser.
128-
128+

0 commit comments

Comments
 (0)