Remove experiments query param from scripts

R=mathias@chromium.org

Bug: 1048124
Change-Id: I4bbd6b9566c6687a2bda2258969025bc53f69a32
Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/2041430
Reviewed-by: Mathias Bynens <mathias@chromium.org>
Commit-Queue: Yang Guo <yangguo@chromium.org>
diff --git a/scripts/npm_test.js b/scripts/npm_test.js
index c709cf6..840143b 100644
--- a/scripts/npm_test.js
+++ b/scripts/npm_test.js
@@ -259,9 +259,7 @@
     if (unitTest) {
       const unitTestPath = `http://localhost:8080/${unitTest.slice('http/tests/'.length)}`;
       const link =
-          `http://localhost:8080/inspector-sources/debug/integration_test_runner.html?experiments=true&test=${
-                                                                                                              unitTestPath
-                                                                                                            }`;
+          `http://localhost:8080/inspector-sources/debug/integration_test_runner.html?test=${unitTestPath}`;
       console.log('1) Go to: ', link);
       console.log('2) Go to: http://localhost:9222/, click on "inspected-page.html", and copy the ws query parameter');
       console.log('3) Open DevTools on DevTools and you can refresh to re-run the test')