()
| 491 | describe('useTheme().resolvedColorScheme', () => { |
| 492 | it('is undefined when not in a theme', () => { |
| 493 | const Component = () => { |
| 494 | const {resolvedColorScheme} = useTheme() |
| 495 | |
| 496 | return <Text data-testid="text">{resolvedColorScheme}</Text> |
| 497 | } |
| 498 | |
| 499 | render(<Component />) |
| 500 |
nothing calls this directly
no test coverage detected