Open Akyna opened 4 years ago
Any updates?
Are there any updates?
How are you importing your Schedule
component into the test file? Since you're default exporting your component, you have to import it without brackets:
import Schedule from './Schedule';
You may be importing your component incorrectly:
import { Schedule } from './Schedule'
(This won't work since you're default exporting the component)
Check the MDN docs if you need a more in-depth explanation: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import
Hopefully this helps!
Bug report
Hi! When I try to write the test - I get the error
Summary
Environment info
react-native info
output:Library version: 2.1.0
Steps to reproduce
Just write a simple test
Reproducible sample code