Skip to content

Commit 4c7c6b3

Browse files
authored
Update vue_numeric.spec.js
1 parent 54e4f49 commit 4c7c6b3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

spec/vue_numeric.spec.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,19 +262,18 @@ describe('vue-numeric', () => {
262262
})
263263
})
264264

265-
it('updates value with currency symbol', done => {
265+
it('updates value with suffix currency symbol', done => {
266266
const vm = new Vue({
267267
el,
268268
data () {
269269
return {
270270
total: 0
271271
}
272272
},
273-
template: '<div><vue-numeric v-model="total" currency="CZK" currencySymbolPosition="sufix" precision=2 separator="."></vue-numeric></div>',
273+
template: '<div><vue-numeric v-model="total" currency="CZK" currencySymbolPosition="suffix" precision=2 separator="."></vue-numeric></div>',
274274
components: { VueNumeric }
275275
}).$mount()
276276

277-
//vm.$el.firstChild.focus()
278277
vm.total = 3000
279278

280279
Vue.nextTick(() => {

0 commit comments

Comments
 (0)