A Nuxt.js and Cypress starter kit. Examples include testing pages, store state, auth and more.
Example tests are found in ~/cypress/integration
- Install dependencies:
yarn
- Start local server:
yarn dev
oryarn build && yarn start
- Start cypress:
yarn cypress open
- Run tests
- Login
- Test user is currently logged out (Nuxt auth store has loggedIn equals false
- Log the user in using Nuxt auth, then test they are logged in (Nuxt auth store has loggedIn equals true)
# install dependencies
$ yarn install
# serve with hot reload at localhost:3000
$ yarn dev
# build for production and launch server
$ yarn build
$ yarn start
# generate static project
$ yarn generate
For detailed explanation on how things work, check out Nuxt.js docs.