File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff 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 ( ( ) => {
You can’t perform that action at this time.
0 commit comments