Ville Saukkonen

Results 102 comments of Ville Saukkonen

Got this solved like this: https://stackoverflow.com/a/68193471/2201572 but instead I had: ``` "transformIgnorePatterns": [ "node_modules/(?!@codetrix-studio)" ], ``` In any case I don't think it's a good practice to publish such sources...

@tflahert I'd remove & reinstall node modules just in case Jest caches something. Did you use the `transformIgnorePatterns` form my previous message instead of stack overflow answer? What versions are...

Also, I'm not sure how your babel config looks like, but you need to have `"@babel/preset-env"` in presets.

All the node modules. Some times jest holds a cache somewhere inside node modules and certain changes might corrupt it. I'm not sure if you should keep your jest config...

@tflahert I think this is still a valid issue. The library should be transpiled.

I'm getting `Suite 'Notifications' contains no tests or tasks.` with following: `pabot --processes 4 --exclude failing --outputdir /results --output output1.xml --runemptysuite robot/tests/invitation robot/tests/notifications robot/tests/products` so there definitely seems to be...

Yeah, `css-loader`& `less-loader`. However, this started happening when moving from `url-loader` to `svg-url-loader`. Though, there's a chance that simultaneously changing the `limit` property revealed the actual issue here. The svg...

Would also be important to show how many mocked responses _did_ match. In some cases there might fire more than one request and you have a mock only for the...

What about building something like prettier plugin for IntelliJ: https://www.jetbrains.com/help/idea/prettier.html Especially these two options: So just run `terraform fmt` for the file in the background and that's it?