Andrew K

Results 77 comments of Andrew K

Have the same problem, no .tox in the project

Same error, happened after upgrade from react 17 to react 18. adding `{delay: 0}` fixed the problem and I have no idea, why

Oh, I found, why. Both of us are missing await after userEvent.type

This issue is because issue author forgot to add await in their code (me as well) On Mon, Jun 6, 2022, at 00:01, Sebastian Silbermann wrote: > > > For...

const selectOne = screen.getByRole("combobox", { name: "My select" }); await fireEvent.change(selectOne, { target: { value: "OPTION1" } }); expect(screen.getByText("OPTION1")).toBeInTheDocument(); On Tue, Jun 14, 2022, at 11:18, Juanjo Ortiz wrote: >...

I'm trying to remove emitDecoratorMetadata option. If you set types/table names manually it can be a solution as well

@nickmerwin after `git gc` it puts that file to `.git/packed-refs` So I vote for this pull request

I confirm that it is not fixed in 3.128.0 Here is what I have in Sentry (not much) It can be kinesis problem and not SDK, related: https://github.com/awslabs/amazon-kinesis-client/issues/711

@cesarfd let's try to debug. Do you use some other other AWS service, which does not support http2, for example DynamoDB? This error happens if someone uses http2 protocol for...

Here is my workaround: ``` const usKinesis = new KinesisClient({ region: "us-east-1", requestHandler: new NodeHttpHandler() }); ```