From c93f74b27363ee573d3d5c7c026b2d453b3a486b Mon Sep 17 00:00:00 2001 From: Sergey Simonchik Date: Tue, 12 Sep 2023 15:55:44 +0200 Subject: [PATCH] fix(runner): another way to allow leading space in `testNamePattern` (#4103) --- packages/runner/src/utils/collect.ts | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/packages/runner/src/utils/collect.ts b/packages/runner/src/utils/collect.ts index 9eeee4267833..2842f4eb9a6b 100644 --- a/packages/runner/src/utils/collect.ts +++ b/packages/runner/src/utils/collect.ts @@ -27,8 +27,14 @@ export function interpretTaskModes(suite: Suite, namePattern?: string | RegExp, } } if (t.type === 'test') { - if (namePattern && !getTaskFullName(t).match(namePattern)) - t.mode = 'skip' + if (namePattern) { + const taskFullName = getTaskFullName(t) + // Match also the task full name with a leading space to be backward-compatible with tools like + // IntelliJ/WebStorm. Previous Vitest versions (<= 0.34.3) had the task full name starting + // with a space, and the tools passed `testNamePattern` matching it. + if (!(taskFullName.match(namePattern) || ` ${taskFullName}`.match(namePattern))) + t.mode = 'skip' + } } else if (t.type === 'suite') { if (t.mode === 'skip')