Tom Mrazauskas

Results 387 comments of Tom Mrazauskas

@GMartigny Seems like the issue is related with Nuxt’s `loadNuxtConfig` helper which is used by the `test-utils`. Possible workaround: - import your Nuxt config to a test file, - pass...

@GMartigny Are you planning to test your web app in a browser using Playwright? In this case it is better idea to use Playwright Test Runner instead of Jest (with...

Back to your question. `@nuxtjs/style-resources` is not ESM module. File extension is `.js`, `"type": "module"` is not declared in `package.json`, so Node will treat this module as CJS, but will...

@regenrek Thanks for note. I added couple of lines to my previous comment. Yes, Playwright can be used with Jest too. This was the only way to test with Playwright...

Shall I open a PR removing [these pattern](https://github.com/yarnpkg/berry/blob/bee82ef50cb715f0962dfc91835ece2553eb59b6/packages/plugin-pack/sources/packUtils.ts#L22-L23)? (Feel free to merge without rush, at any comfortable time.)

> I _think_ inherited it from npm Right, seems like they removed this behaviour in https://github.com/npm/npm-packlist/pull/61 (or that’s something else?)

> note it'll have to wait the next major, which may take some time. Understandable. I saw that the change in `npm` broke someone. The change is trivial, should be...

Funny. Click a link at the bottom of that section: > See [package.json](https://docs.npmjs.com/cli/v11/configuring-npm/package-json) for more info on what can and can't be ignored. Scroll to [`#files`](https://docs.npmjs.com/cli/v11/configuring-npm/package-json#files). `CHANGELOG` is not listed...

This is an update on the current state. TSTyche 4.0.0 and the latest TSTyche 5.0.0 shipped with many internal improvements. The usage of TypeScript’s internals is reduced to one single...

The more I think about `assertType()` the more useful I find it. Also I would like to flesh out the API, by adding: - `assertType.is()` (an alias of `assertType()`) -...