File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -25,8 +25,7 @@ class Step {
25
25
this . opts = { }
26
26
/** @member {string} */
27
27
this . actor = 'I' // I = actor
28
- /** @member {string} */
29
- this . helperMethod = name // helper method
28
+
30
29
/** @member {string} */
31
30
this . status = 'pending'
32
31
/** @member {string} */
@@ -38,6 +37,13 @@ class Step {
38
37
/** @member {string} */
39
38
this . stack = ''
40
39
40
+ // These are part of HelperStep class
41
+ // but left here for types compatibility
42
+ /** @member {any} */
43
+ this . helper = null
44
+ /** @member {string} */
45
+ this . helperMethod = name
46
+
41
47
this . startTime = 0
42
48
this . endTime = 0
43
49
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " codeceptjs" ,
3
- "version" : " 3.7.0-beta.8 " ,
3
+ "version" : " 3.7.0-beta.14 " ,
4
4
"description" : " Supercharged End 2 End Testing Framework for NodeJS" ,
5
5
"keywords" : [
6
6
" acceptance" ,
31
31
"main" : " lib/index.js" ,
32
32
"exports" : {
33
33
"." : " ./lib/index.js" ,
34
+ "./lib/*" : " ./lib/*.js" ,
34
35
"./els" : " ./lib/els.js" ,
35
36
"./effects" : " ./lib/effects.js" ,
36
37
"./steps" : " ./lib/steps.js"
You can’t perform that action at this time.
0 commit comments