Paavo Bennett
Paavo Bennett
### Version 28.0.3 ### Steps to reproduce 1. Clone https://github.com/eliw00d/jest-27-issues-repro 2. yarn install 3. yarn jest 4. ./api-fail.spec.js fails even though it should pass ### Expected behavior Based on [the...
**Is your feature request related to a problem? Please describe.** Currently, there are many errors that do not provide certain metadata. For example, TOPIC_AUTHORIZATION_FAILED does not provide the topic(s) that...
**Is your feature request related to a problem? Please describe.** Does not work: ```javascript const { SOME_VAR } = process.env ``` Works: ```javascript const SOME_VAR = process.env.SOME_VAR ``` **Describe the...
## Environment ``` System: OS: macOS 11.6.2 CPU: (12) x64 Intel(R) Core(TM) i7-8700B CPU @ 3.20GHz Memory: 13.14 GB / 32.00 GB Shell: 5.8 - /bin/zsh Binaries: Node: 16.13.2 -...
## Environment ``` System: OS: macOS 10.15.7 CPU: (16) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz Memory: 60.43 MB / 32.00 GB Shell: 5.7.1 - /bin/zsh Binaries: Node: 14.15.0 -...
### Problem description For some reason, I am getting eslint errors for adding `[name: string]: grpc.UntypedHandleCall` to my implementation of an interface that extends `grpc.UntypedServiceImplementation`:  ### Reproduction steps ```typescript...
**Is your feature request related to a problem? Please describe.** I am working on an Electron application that has react-dnd and also uses [Native File Drag & Drop](https://www.electronjs.org/docs/latest/tutorial/native-file-drag-drop). However, they...
This gets found: ```typescript import fs from 'fs' fs.readdirSync() // 1 error ``` This does not get found: ```typescript import { readdirSync } from 'fs' readdirSync() // 0 errors ```
I am trying to fix the following vulnerabilities that are related to Flipper: Flipper-Folly: https://www.whitesourcesoftware.com/vulnerability-database/CVE-2021-24036 Flipper-Boost-iOSX: https://www.whitesourcesoftware.com/vulnerability-database/CVE-2012-2677 Are there plans to bump the versions of these to include fixes for...
We recently upgraded to React Native 0.63, Jest 26, and React Native Testing Library 7. When running jest with `--runInBand` we have noticed the following error randomly in our CI:...