From c11b00586a2832f9bed2aaa5e552b8c5b5243d97 Mon Sep 17 00:00:00 2001 From: Ali Hammoud Date: Wed, 19 Aug 2026 21:53:34 +0300 Subject: [PATCH 1/2] test: make sure test:ci script picks all tests --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f759fe5..ae49473 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "fmt:check": "oxfmt --check", "typecheck": "tsc --noEmit", "test": "tsx --test '**/*.test.ts'", - "test:ci": "NODE_ENV=test node --test dist/**/*.test.js", + "test:ci": "NODE_ENV=test node --test \"dist/**/*.test.js\"", "prepare": "husky", "pre-commit": "lint-staged", "sync-guides": "tsx src/scripts/sync-guides.ts", From 838d76f2aff30fc49f596c8d1260f90e0536a9e9 Mon Sep 17 00:00:00 2001 From: Ali Hammoud Date: Wed, 19 Aug 2026 21:54:03 +0300 Subject: [PATCH 2/2] test: add missing entries in `NON_BASELINE_FEATURES` --- src/features/docs/utils.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/features/docs/utils.ts b/src/features/docs/utils.ts index 7f4e205..faa1af9 100644 --- a/src/features/docs/utils.ts +++ b/src/features/docs/utils.ts @@ -101,9 +101,18 @@ export const executeDocCommand = async ( }; export const NON_BASELINE_FEATURES = [ + 'display-grid-lanes', + 'grid-lanes', + 'navigator-modelcontext', 'numeric-seperators', 'open-closed', + 'rect-xywx', 'single-color-gradients', + 'text-wrap-mode', + 'text-wrap-nowrap', + 'text-wrap-stable', + 'text-wrap-style', + 'web-install', ]; export const getBaselineFeatures = ( originalFeatures: Record,