You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- The jest of it is that we have a stricter matching mode, when a test
location is passed:
```ts
if (testLocations !== undefined && testLocations.length !== 0) {
```
We have three cases to deal with:
1. Parent did match via location filter, and as such this test is
marked to run. No Questions asked.
2. This test / suite does match via location filter, and as such mark
it to run, and do the same for its children.
3. No match. In this case I'd mark as skipped only it is a test. (if
it's a suite, I still want to go through its children)
0 commit comments