From b61bcacabf4bd09f91ee2ccab7c554e2b2a3d6b8 Mon Sep 17 00:00:00 2001 From: Siddharth Gelera Date: Thu, 18 Sep 2025 17:42:02 +0530 Subject: [PATCH] test(websocket): update BRU_FILE_NAME to use regex Changed BRU_FILE_NAME from a string to a regex pattern for better matching. --- tests/websockets/headers.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/websockets/headers.spec.ts b/tests/websockets/headers.spec.ts index 7c3287495..81f6e379d 100644 --- a/tests/websockets/headers.spec.ts +++ b/tests/websockets/headers.spec.ts @@ -1,7 +1,7 @@ -import { test, expect, Page } from '../../playwright'; +import { test, expect } from '../../playwright'; import { buildCommonLocators } from './lib/locators'; -const BRU_FILE_NAME = 'ws-test-request-with-headers'; +const BRU_FILE_NAME = /^ws-test-request-with-headers$/; test.describe.serial('headers', () => { test.setTimeout(2 * 10 * 1000);