[Vuejs]-AVA Testing Vue – Whitespace is the difference

0πŸ‘

I found the error and it’s a dumb one:

'<div> {{ message }} </div>'

has to be

<div>{{ message }}</div>'

The Whitespaces where in the div …

Leave a comment