I have the next environment working with Yarn workspaces:
System:
OS: macOS Mojave 10.14.6
CPU: (8) x64 Intel(R) Core(TM) i7-4770HQ CPU @ 2.20GHz
Binaries:
Node: 12.14.1 - /usr/local/bin/node
Yarn: 1.21.1 - /usr/local/bin/yarn
npm: 6.13.4 - /usr/local/bin/npm
I'm trying to fix the next error:
As you can see, I have 3 options to solve my problem, but I'm using Stenciljs and I found many solutions for babel.js and their babel.config.js file as you can see in the following link
But in Stenciljs I don't have babel.js set and the tests are set to the "testing" key of the stencil.config.ts
file, I did the following configuration:
testing: {
transformIgnorePatterns: ['<rootDir>/node_modules/'],
},
But I can't solve my problem. Anyone else has happened?