mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 07:04:04 -05:00
Port to vitest. Port everything to typescript. Remove chai, mocha and chai-as-promised. Adds some docs.
877 B
877 B
vitest crib sheet
We just moved to a new testing framework, vitest. Here are some notes to help you get started.
Running tests
npm testwill run the testsnpm run test:watchwill run the watcher; which runs all the tests and then watches for changes and then runs on the changed tests. This is much quicker as a lot of the work is cached.npm run test:watch <path>will do the same with just a path
Writing tests
In general use describe, it and expect as you would with jest. Import these all from vitest. If you need async
things then use await expect(someAsyncThing()).resolves.toEqual(someValue).
The expect is pretty rich and supports a lot of matchers, like expect(x).toContain("moo") or
expect(y).not.toHaveProperty("badger"). You can see the full list in the
vitest documentation.