From addc8e7cbb824fab42a2bbf98faa27897b73f168 Mon Sep 17 00:00:00 2001 From: Simon Pieters Date: Thu, 20 May 2021 17:04:37 +0200 Subject: [PATCH] Add a console message when running npm run regression to inform about DEBUG=1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a88e7594cd..ddd12928b9 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,7 @@ "lint:html": "npm run htmlhint && npm run vnu-jar", "lint:spelling": "cspell \"**/*.*\"", "reference-tables": "node scripts/reference-tables.js", - "regression": "ava --timeout=1m", + "regression": "echo 'Tip: use `DEBUG=1 npm run regression` to disable headless mode.'; ava --timeout=1m", "regression-report": "node test/util/report", "test": "npm run lint && npm run regression", "vnu-jar": "java -jar node_modules/vnu-jar/build/dist/vnu.jar --filterfile .vnurc --no-langdetect --skip-non-html aria-practices.html examples/",