File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change
1
+ ## 3.0.0-beta.4
2
+
3
+ 🐛 Bug Fix:
4
+ * PageObject was broken when using "this" inside a simple object.
5
+ * The typings for all WebDriver methods work correctly.
6
+ * The typings for "this.helper" and helper constructor work correctly, too.
7
+
8
+ 🧤 Internal:
9
+ * Our TS Typings will be tested now! We strarted using [ dtslint] ( https://github.com/microsoft/dtslint ) to check all typings and all rules for linter.
10
+ Example:
11
+ ``` ts
12
+ const psp = wd .grabPageScrollPosition () // $ExpectType Promise<PageScrollPosition>
13
+ psp .then (
14
+ result => {
15
+ result .x // $ExpectType number
16
+ result .y // $ExpectType number
17
+ }
18
+ )
19
+ ```
20
+ * And last: Reducing package size from 3.3Mb to 2.0Mb
21
+
1
22
## 3.0.0-beta-3
2
23
3
24
> [ 👌 ** LEARN HOW TO UPGRADE TO CODECEPTJS 3 ➡** ] ( https://bit.ly/codecept3Up )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codeceptjs" ,
3
- "version" : " 3.0.0-beta.3 " ,
3
+ "version" : " 3.0.0-beta.4 " ,
4
4
"description" : " Supercharged End 2 End Testing Framework for NodeJS" ,
5
5
"keywords" : [
6
6
" acceptance" ,
You can’t perform that action at this time.
0 commit comments