czeidler

Results 16 comments of czeidler

Maybe the node version is an issue: https://github.com/karma-runner/karma/issues/3111#issuecomment-431572445 Any idea how to update the node version in com.craigburke.karma? From the craigburke sources I see that the used node version is...

Here is a good article that helps to make the JS tests work again: https://medium.com/@gz_k/effective-tool-chain-for-kotlin-js-testing-b243449e8a16 This solution has also a much faster build time than the karma gradle plugin. If...

I'm running on Ubuntu 18.04 with Java 8. Here is my code: https://gitlab.com/czeidler/fejoa Run the test with: `./gradlew test -p fuse ` This should succeed. To make it fail please...

Or even simpler: add a flush method to MemoryFS and run the MemoryFSTest

Being able to pass in a ready migrated in memory PGlite instance would be great! However, knex doesn't support pglite at this stage: https://github.com/knex/knex/issues/6078. In the meantime, doing something like...

I created a pglite dialect for knex: https://www.npmjs.com/package/knex-pglite I guess you could configure it in `extractSchemas.ts`? Any suggestions on the best way to configure it? e.g. just use pglite if...

I think jitpack is a great idea but I'm a bit sceptical about it. I'm not sure if I like to trust a company to build my jar files and...

I guess you have to implement a dialect like in https://github.com/knex/knex/blob/master/lib/dialects/pgnative/index.js, right? But what is the required interface for the driver? is there any docs on it? Hard to figure...

I created: https://www.npmjs.com/package/knex-pglite to use pglite with knex