roblframpton
roblframpton
I am also experiencing this issue, although I am using the regular `mock` function, not `mockDeep`. For me the issue is also resolved by downgrading to 2.0.6. You can see...
> the built-in `spyOn()` method is now able to mock getters / setters ie. `jest.spyOn(video, 'play', 'get')` Could you expand on that a little? I thought you meant I could...
I'm also getting this, I'm running integration tests via Firebase Test Lab and all devices are triggering this exception, all different manufacturers - Google, Samsung, Huawei, etc. It happens on...
@offline-first Are you able to reproduce this on an actual device? What device/android version/flutter version are you using? And does it actually crash or just appear in Crashlytics? I can't...
I believe I have resolved this. It is a ProGuard issue, but it's not a class in this package which can't be found but the `NotificationManagerCompat` class, [called on line...
I am also experiencing this issue, but for me it is caused by `node-fetch`. As far as I can see none of the workarounds in this thread are applicable, and...
This appears to be a wider issue with all VSCode extensions, as [this closed ticket](https://github.com/microsoft/vscode/issues/56995) suggests. I've opened a new ticket in the hope they will address it. In the...
Just wanted to add my support for this because lack of desktop support means that calling `getLocalTimezone()` during unit testing will break the unit tests. This is pretty annoying, because...
This also fails for the promise versions of `fs`. For example, this is fine: ``` import { readdirSync } from "fs"; const files = readdirSync("."); ``` But this fails to...
I also have this problem. At first, I missed the "name=urn" syntax for the `--parent` parameter. But now my import looks like this: ``` pulumi import 'aws:rds/cluster:Cluster' $RESOURCE_NAME $RDS_IDENTIFIER --parent...