You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Song Zheng edited this page Jan 30, 2022
·
7 revisions
Introduction
This page serves as a list of code samples to help you navigate certain concepts. When a pull request introduces a new concept, add it to this list!
Test
Mocking - sometimes you may not want libraries to be run during your tests. To auto mock out libraries, you just have to put the module-name.js into the __mocks__ folder. code sample for auto mocking.