(cls)
| 236 | class browser(BrowserCore): |
| 237 | @classmethod |
| 238 | def setUpClass(cls): |
| 239 | super().setUpClass() |
| 240 | cls.browser_timeout = 60 |
| 241 | if get_browser() != 'node': |
| 242 | print() |
| 243 | print('Running the browser tests. Make sure the browser allows popups from localhost.') |
| 244 | print() |
| 245 | |
| 246 | def require_jspi(self): |
| 247 | if not is_chrome() and not is_firefox(): |
nothing calls this directly
no test coverage detected