@@ -16,7 +16,7 @@ module.exports = {
16
16
. assert . containsText ( '.data-field' , 'obj: Object' )
17
17
18
18
// should expand root by default
19
- . assert . count ( '.instance' , 4 )
19
+ . assert . count ( '.instance' , 5 )
20
20
21
21
// select child instance
22
22
. click ( '.instance .instance:nth-child(1) .self' )
@@ -27,17 +27,17 @@ module.exports = {
27
27
28
28
// expand child instance
29
29
. click ( '.instance .instance:nth-child(2) .arrow-wrapper' )
30
- . assert . count ( '.instance' , 6 )
30
+ . assert . count ( '.instance' , 7 )
31
31
32
32
// add/remove component from app side
33
33
. frame ( 'target' )
34
34
. click ( '.add' )
35
35
. frame ( null )
36
- . assert . count ( '.instance' , 9 )
36
+ . assert . count ( '.instance' , 10 )
37
37
. frame ( 'target' )
38
38
. click ( '.remove' )
39
39
. frame ( null )
40
- . assert . count ( '.instance' , 8 )
40
+ . assert . count ( '.instance' , 9 )
41
41
42
42
// filter components
43
43
. setValue ( '.search-box' , 'counter' )
@@ -72,7 +72,7 @@ module.exports = {
72
72
. setValue ( '.search-box' , '\b\b\b' )
73
73
. waitForElementNotVisible ( '.invalid-regex' , 100 )
74
74
. click ( '.buttons a:last-of-type' )
75
-
75
+
76
76
// time travel
77
77
. click ( '.history .entry:nth-child(3)' )
78
78
. assert . cssClassPresent ( '.history .entry:nth-child(3)' , 'active' )
0 commit comments