Mindulle Garden
Search
Search
Search
Light mode
Dark mode
Folder: fruit/Coding/Testing/javascript/1-The-Test-Anatomy
13 items under this folder.
Aug 17, 2024
1-1 Include 3 parts in each test name
Aug 17, 2024
1-10 Dont catch errors expect them
Aug 17, 2024
1-11 Tag your tests
Aug 17, 2024
1-12 Categorize tests under at least 2 levels
Aug 17, 2024
1-13 Other generic good testing hygiene
Aug 17, 2024
1-2 Structure tests by the AAA pattern
Aug 17, 2024
1-3 Describe expectations in a product language use BDD-style assertions
Aug 17, 2024
1-4 Stick to black-box testing Test only public methods
Aug 17, 2024
1-5 Choose the right test doubles Avoid mocks in favor of stubs and spies
Aug 17, 2024
1-6 Dont foo use realistic input data
Aug 17, 2024
1-7 Test many input combinations using Property-based testing
Aug 17, 2024
1-8 If needed use only short inline snapshots
Aug 17, 2024
1-9 Copy code but only whats neccessary