From 2db57fa19a492f383d140ba91cb214a0fc4fc5ef Mon Sep 17 00:00:00 2001 From: Rhys Howell Date: Wed, 17 Sep 2025 13:58:16 -0400 Subject: [PATCH 1/2] chore(import-export): disable debug for ci tests --- packages/compass-import-export/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/compass-import-export/package.json b/packages/compass-import-export/package.json index fa58d15c660..c28eff566a2 100644 --- a/packages/compass-import-export/package.json +++ b/packages/compass-import-export/package.json @@ -43,8 +43,8 @@ "test-electron": "xvfb-maybe electron-mocha --no-sandbox", "test-cov": "nyc --compact=false --produce-source-map=false -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test", "test-watch": "npm run test -- --watch", - "test-ci": "npm run test-cov", - "test-ci-electron": "npm run test-electron", + "test-ci": "DEBUG= npm run test-cov", + "test-ci-electron": "DEBUG= npm run test-electron", "reformat": "npm run eslint . -- --fix && npm run prettier -- --write ." }, "dependencies": { From 3a99874503540e0a17cb9aef53e22f82d2a68d67 Mon Sep 17 00:00:00 2001 From: Rhys Howell Date: Wed, 17 Sep 2025 15:03:34 -0400 Subject: [PATCH 2/2] fixup: use env --- packages/compass-import-export/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/compass-import-export/package.json b/packages/compass-import-export/package.json index c28eff566a2..b94e9a19288 100644 --- a/packages/compass-import-export/package.json +++ b/packages/compass-import-export/package.json @@ -43,8 +43,8 @@ "test-electron": "xvfb-maybe electron-mocha --no-sandbox", "test-cov": "nyc --compact=false --produce-source-map=false -x \"**/*.spec.*\" --reporter=lcov --reporter=text --reporter=html npm run test", "test-watch": "npm run test -- --watch", - "test-ci": "DEBUG= npm run test-cov", - "test-ci-electron": "DEBUG= npm run test-electron", + "test-ci": "env DEBUG='' npm run test-cov", + "test-ci-electron": "env DEBUG='' npm run test-electron", "reformat": "npm run eslint . -- --fix && npm run prettier -- --write ." }, "dependencies": {