Skip to content

Commit 3cbe027

Browse files
authored
fix(docs): Incorrect types in docs for helpers (#2046)
1 parent ae311b5 commit 3cbe027

File tree

12 files changed

+568
-497
lines changed

12 files changed

+568
-497
lines changed

.github/CONTRIBUTING.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,16 @@ Documentation parts can be shared accross helpers. Those parts are located in `d
134134
}
135135
```
136136

137+
## Typings
138+
139+
Typings is generated in `typings/` directory via `jsdoc`
140+
141+
After you updated docblock in JS file, generate typing files with next command:
142+
143+
```
144+
npm run def
145+
```
146+
137147
## Testing
138148

139149
Whenever you implemented a feature/bugfix

docs/changelog.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@ id: changelog
33
title: Releases
44
---
55

6+
## 2.3.6
7+
8+
* Create better Typescript definition file through JSDoc. By **[lemnis](https://github.com/lemnis)**
9+
* `run-workers` now can use glob pattern. By **[Ilrilan](https://github.com/Ilrilan)**
10+
```js
11+
// Example:
12+
exports.config = {
13+
tests: '{./workers/base_test.workers.js,./workers/test_grep.workers.js}',
14+
}
15+
```
16+
* Added new command `npx codeceptjs info` which print information about your environment and CodeceptJS configs. By **[jamesgeorge007](https://github.com/jamesgeorge007)**
17+
* Fixed some typos in documantation. By **[pablopaul](https://github.com/pablopaul)** **[atomicpages](https://github.com/atomicpages)** **[EricTendian](https://github.com/EricTendian)**
18+
* Added PULL_REQUEST template.
19+
* [Puppeteer][WebDriver] Added `waitForClickable` for waiting clickable element on page.
20+
* **[TestCafe]** Added support for remote connection. By **[jvdieten](https://github.com/jvdieten)**
21+
* **[Puppeteer]** Fixed `waitForText` XPath context now works correctly. By **[Heavik](https://github.com/Heavik)**
22+
* **[TestCafe]** Fixed `clearField` clear field now awaits TestCafe's promise. By **[orihomie](https://github.com/orihomie)**
23+
* **[Puppeteer]** Fixed fails when executing localStorage on services pages. See [#2026](https://github.com/Codeception/CodeceptJS/issues/2026)
24+
* Fixed empty tags in test name. See [#2038](https://github.com/Codeception/CodeceptJS/issues/2038)
25+
626
## 2.3.5
727

828
* Set "parse-function" dependency to "5.2.11" to avoid further installation errors.

0 commit comments

Comments
 (0)