lucasgray-alloy

Results 6 comments of lucasgray-alloy

Any chance of this getting merged (or something similar)? We'd like to disable the Hungarian notation

I have a similar need - We interact with a series of apis that allow pagination. They surface a response header with the total amount of pages along with any...

Hey, I'm also receiving an error on line coverage threshold failure, although my error looks exactly like the one here: https://github.com/ArtiomTr/jest-coverage-report-action/issues/198#issuecomment-1011542129 When the threshold is met the report generates quite...

What needs to happen here? I unfortunately just hitched my wagon to this repo because I liked the way the client worked compared to similar alternatives (although I needed to...

I'm having the same issue - I'm interested in moving to `vitest` for a few reasons. My seeds don't run due to this error. Is there a way knex could...

This worked for me in `beforeEach` ``` const seeds = await fs.readdir('src/knex/seeds/test'); for await (const seed of seeds) { const file = await import('src/knex/seeds/test/' + seed); await file.seed(knex); } ```