Skip to content

Commit

Permalink
tests pass
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Aug 13, 2016
1 parent c46f0dd commit bc605a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/devtools/components/VuexStateInspector.vue
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

<div class="import-state" transition="slide-up" v-if="showImportStatePopup">
<textarea placeholder="Paste state object here to import it..."
@input="tryImportState"
@input="importState"
@keydown.esc="closeImportStatePopup"></textarea>
<span class="message invalid-json"
transition="slide-up"
Expand Down
2 changes: 1 addition & 1 deletion test/specs/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
// select child instance
.click('.instance .instance:nth-child(1) .self')
.assert.containsText('.component-name', 'Counter')
.assert.containsText('.data-field', 'count: 0 vuex getter')
.assert.containsText('.data-field', 'count: 0 computed')
.assert.containsText('.data-field:nth-child(2)', 'hello: undefined')
.assert.containsText('.data-field:nth-child(3)', 'test: 1 computed')

Expand Down

0 comments on commit bc605a3

Please sign in to comment.