Parcourir la source

fix style !important spec

Evan You il y a 9 ans
Parent
commit
3cfd84346f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      test/unit/features/directives/style.spec.js

+ 2 - 2
test/unit/features/directives/style.spec.js

@@ -83,11 +83,11 @@ describe('Directive v-bind:style', () => {
     }).then(done)
   })
 
-  it('!important', () => {
+  it('!important', done => {
     vm.styles = { display: 'block !important' }
     waitForUpdate(() => {
       expect(vm.$el.style.getPropertyPriority('display')).toBe('important')
-    })
+    }).then(done)
   })
 
   it('object with multiple entries', done => {