Skip to content

Unit_Testing

Maria Husmann edited this page Nov 22, 2022 · 3 revisions

Testing Vue apps

  • Watch the Unit Testing Vue video
  • Watch the Vitest video
  • Install Vitest
  • Install Vue test-utils
  • Optionally install the Vitest VS Code plugin
  • Setup your tests to generate a report on demand by specifing a reporter and outputfile in the CLI
  • Optionally set up CI in with Github actions

Your task

Analyse your application and figure out where it makes sense to tests. Write a set of unit and component tests on your application. It is a good idea to also make your test fail in the beginning to make sure your tests are testing what you think they are.

Resources