mirror of
https://github.com/microsoft/frontend-bootcamp.git
synced 2026-01-26 14:56:42 +08:00
487 B
487 B
Bonus: Testing TypeScript code with Jest (Exercise)
Start the test runner by running npm test in the root of the frontend-bootcamp folder.
Basic testing
-
Look at
exercise/src/stack.tsfor a sample implementation of a stack -
Follow the instructions inside
stack.spec.tsfile to complete the two tests
Enzyme Testing
-
Open up
exercise/src/TestMe.spec.tsx -
Fill in the test using Enzyme concepts introduced in the demo