Thomas Levesque

Results 9 comments of Thomas Levesque

The branch coverage is also wrong btw: it says 68%, but 173/250 is 0.692, so 69%...

Hi @irongut, > Is this reading a single coverage file or two coverage files? If it's a single file then those values come from the coverage file with no additional...

> custom images available which include `gh` + more > `ghcr.io/catthehacker/ubuntu:custom-latest` > `ghcr.io/catthehacker/ubuntu:custom-20.04` Are these images still available somewhere? I'm getting a "manifest unknown" error

It also doesn't work if the test name is not a string literal (e.g. `describe(MyClass.name, ...)` instead of `describe('MyClass', ...)`)

Yup. I work for a company that provides online ordering services for restaurants, and we integrate with Order with Google. I can confirm it's ending.

Can't get this to work, even on localhost 🤷‍♂️

> For testing purposes, I manually edited the node_modules/@types/jest-when/index.d.ts Ah, I see. Not really a viable option for me, I need this to work in CI... But I think it's...

OK, so you can indeed "patch" the types by including a `jest-when.d.ts` file like this in your project: ```typescript /* eslint-disable @typescript-eslint/no-explicit-any */ import 'jest-when'; declare module 'jest-when' { export...