Tyler Brown
Tyler Brown
I'm experiencing the same thing in React Native. Realm `v1.2.0`. No special setup or code. But another important note here... The initial invocation of the callback (the one that shows...
+1
Indeed, this plugin no longer works in the latest versions of Firefox. Unfortunately, I no longer put effort into this library. Feel free to fix in Firefox and send a...
@neoziro This is all it takes: ``` describe('foo', async () => { it('bar', async () => { await page.goto(`http://localhost:${port}/foobar`, {waitUntil: 'networkidle2'}); await jestPuppeteer.debug(); }); }); ``` I've found that if...
Did you mean to say "but it does not work if timeout is [not] set in the test"?
Hmmm, weird. The only way I can get it to work is: ``` it('like this', async () => { await jestPuppeteer.debug() }, 999999) ```
The problem here doesn't have anything to do with initial values, or device rotation, or the insets changing. It's about mounting a new instance of ``. The new instance will...
Steps to reproduce: ```sh npx create-expo-app rnsac-bug-repro cd rnsac-bug-repro npx expo install react-native-safe-area-context ``` Replace contents of `App.js` with: ```jsx import React from 'react'; import { StatusBar } from 'expo-status-bar';...
@jacobp100 No, it is not fixed. I laid out a very simple reproduction in my last comment. Using those steps it did not work with v4.4.1 at the time. I...