Skip to main content

Posts

Showing posts with the label vue testing

vue test utils - setTimeout()

await wrapper . vm . $nextTick () /* timeout 2750, will trigger save after update and not cancel by user */ expect ( wrapper . vm . action ). toBe ( 'update' ) await wrapper . vm . $nextTick () setTimeout (() => { expect ( wrapper . vm . action ). toBe ( 'save' ) }, 2750 )