Skip to content

Commit cda99f2

Browse files
committed
fix tests after events module addition
1 parent 4cef137 commit cda99f2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/specs/test.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module.exports = {
1616
.assert.containsText('.data-field', 'obj: Object')
1717

1818
// should expand root by default
19-
.assert.count('.instance', 4)
19+
.assert.count('.instance', 5)
2020

2121
// select child instance
2222
.click('.instance .instance:nth-child(1) .self')
@@ -27,17 +27,17 @@ module.exports = {
2727

2828
// expand child instance
2929
.click('.instance .instance:nth-child(2) .arrow-wrapper')
30-
.assert.count('.instance', 6)
30+
.assert.count('.instance', 7)
3131

3232
// add/remove component from app side
3333
.frame('target')
3434
.click('.add')
3535
.frame(null)
36-
.assert.count('.instance', 9)
36+
.assert.count('.instance', 10)
3737
.frame('target')
3838
.click('.remove')
3939
.frame(null)
40-
.assert.count('.instance', 8)
40+
.assert.count('.instance', 9)
4141

4242
// filter components
4343
.setValue('.search-box', 'counter')
@@ -72,7 +72,7 @@ module.exports = {
7272
.setValue('.search-box', '\b\b\b')
7373
.waitForElementNotVisible('.invalid-regex', 100)
7474
.click('.buttons a:last-of-type')
75-
75+
7676
// time travel
7777
.click('.history .entry:nth-child(3)')
7878
.assert.cssClassPresent('.history .entry:nth-child(3)', 'active')

0 commit comments

Comments
 (0)