Skip to content

Commit 87840ab

Browse files
author
Guillaume Chau
committed
Fix some tests
1 parent 8da2289 commit 87840ab

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

shells/dev/target/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ new Vue({
2020
render (h) {
2121
return h('div', null, [
2222
h(Counter),
23-
h(Date),
2423
h(Target, {props:{msg: 'hi', ins: new MyClass()}}),
2524
h(Other),
26-
h(Events)
25+
h(Events),
26+
h(Date)
2727
])
2828
},
2929
data: {

test/specs/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module.exports = {
22
'vue-devtools e2e tests': function (browser) {
3-
var baseInstanceCount = 6
3+
var baseInstanceCount = 7
44

55
browser
66
.url('http://localhost:' + (process.env.PORT || 8081))

0 commit comments

Comments
 (0)