Nuxt/examples/with-ava/Readme.md
Sébastien Chopin 8ab135af55 Prototype 0.1.0 working
Alpha 0.1.0
2016-11-07 02:34:58 +01:00

478 B
Executable File

Add testing to your nuxt app using ava and jsdom

ava is a powerful JavaScript testing framework, mixed with jsdom, we can use them to do end-to-end testing easily for nuxt applications.

npm install --save-dev ava jsdom

Add test script to the package.json

package.json

// ...
"scripts": {
  "test": "ava",
}
// ...

Launch the tests:

npm test