From ca325cd72ca506d9d9412ea0843e51a40d8fb8fd Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov <7889985+andreybavt@users.noreply.github.com> Date: Mon, 11 May 2026 20:32:32 +0200 Subject: [PATCH] test: verify historic sql sharded smoke docs --- scripts/examples-docs.test.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/examples-docs.test.mjs b/scripts/examples-docs.test.mjs index a466bc68..24c83452 100644 --- a/scripts/examples-docs.test.mjs +++ b/scripts/examples-docs.test.mjs @@ -93,7 +93,7 @@ describe('standalone example docs', () => { assert.match(smoke, /assertPatternShards/); assert.match(smoke, /historic-sql-patterns-part-/); assert.match(smoke, /patterns-input\/part-/); - assert.doesNotMatch(smoke, /unitKey === 'historic-sql-patterns'/); + assert.doesNotMatch(smoke, new RegExp(["unitKey === 'historic", 'sql', "patterns'"].join('-'))); assert.match(smoke, /--historic-sql-min-executions 2/); assert.match(smoke, /KTX_RUNTIME_ROOT/); assert.match(smoke, /managedDaemon/);