From e4db4b32259a0a45a0fbf329adc193c79295a4d0 Mon Sep 17 00:00:00 2001 From: David Sarkisyan <281478990+srkyn@users.noreply.github.com> Date: Thu, 4 Jun 2026 10:10:11 -0400 Subject: [PATCH] Add npm test script --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 55e7900..a78ea43 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ }, "scripts": { "build": "esbuild src/content.js --bundle --format=iife --target=chrome110,firefox110 --outfile=content.js --legal-comments=none", + "test": "npm run check", "check": "npm run check:static && node scripts/browser-tests.mjs", "check:static": "npm run build && node --check content.js && node --check popup.js && node scripts/check-engine.mjs && node -e \"JSON.parse(require('fs').readFileSync('manifest.json','utf8')); console.log('manifest ok')\"", "package": "npm run check:static && powershell -NoProfile -ExecutionPolicy Bypass -File scripts/package-extension.ps1",