()
| 116 | |
| 117 | it('throws if theres no query', () => { |
| 118 | function App() { |
| 119 | useMediaQuery({}) |
| 120 | return null |
| 121 | } |
| 122 | assert.throws( |
| 123 | () => TestUtils.renderIntoDocument(<App />), |
| 124 | 'Invalid or missing MediaQuery!' |
nothing calls this directly
no test coverage detected