This repository holds my version of Web Dev Cody's live coding example of a quiz-app. It was built with Vite and is written in Typescript.
Running the quiz on your localhost:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Testing one or more functions of the quiz either using vitest or jest (to be determined)
I have been able to run tests on a function of my code using
jest. The setup for the environment seemed to be quite delicate however (probably because I am testing Typescript code?) and I wonder if I can getvitestto run the same tests. tbd.