diff --git a/flake.nix b/flake.nix
index eddcd3a64130f1490efba735a370f5b68984bfb1..4609fc1b6558cf216afc3ebed57652b805a2a0da 100644
--- a/flake.nix
+++ b/flake.nix
@@ -127,6 +127,10 @@
                 fi
                 
                 cd ''${CI_PROJECT_DIR} || exit 1
+                
+                ## chrome should not use bus address
+                unset DBUS_SESSION_BUS_ADDRESS
+
             '';
           };
       };
diff --git a/test/web/puppeteer.mjs b/test/web/puppeteer.mjs
index 631cf9720aabd9cda51172b7cc5646a7d39cdc9f..e725c9271dd662ae9c39d2b513a4a1edaadce409 100644
--- a/test/web/puppeteer.mjs
+++ b/test/web/puppeteer.mjs
@@ -34,7 +34,9 @@ if (!config.browser) {
         args: ["--disable-gpu",
             '--no-sandbox',
             '--disable-setuid-sandbox',
-            '--user-data-dir=/tmp'
+            '--user-data-dir=/tmp',
+            '--enable-logging=stderr', 
+            '--v=1'
         ],
         
         userAgent: 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36',