In a previous version of stencil...
"@stencil/core": "2.22.3",
"@stencil/angular-output-target": "0.7.1",
"@stencil/react-output-target": "0.5.3",
...it was possible to run individual unit tests, using a command like:
npm run test component-one
The example above would run only the component-one unit tests.
But after updating stencil...
"@stencil/angular-output-target": "0.8.0",
"@stencil/core": "4.0.5",
"@stencil/react-output-target": "0.5.3",
...this ability has evaporated. Any attempt to run a single unit test results in running them all.
npm run test component-one
The above will run the unit tests for component-one, component-two, and component-three.