From 3acc1b8c270ae3b1da66fe61a1d4e9fd28d17783 Mon Sep 17 00:00:00 2001 From: thomik-corp <85543848+thomik-corp@users.noreply.github.com> Date: Wed, 20 Apr 2022 11:59:05 -0700 Subject: [PATCH] Removing phantom content script --- tests/integration/extension/manifest.json | 2 +- tests/integration/extension/rollup.config.js | 10 +--------- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/tests/integration/extension/manifest.json b/tests/integration/extension/manifest.json index 4ec4324f..9f72355a 100644 --- a/tests/integration/extension/manifest.json +++ b/tests/integration/extension/manifest.json @@ -18,7 +18,7 @@ "content_scripts": [ { "matches": ["*://localhost/*"], - "js": ["dist/rally-content.js", "dist/content-script.js"] + "js": ["dist/content-script.js"] } ] } diff --git a/tests/integration/extension/rollup.config.js b/tests/integration/extension/rollup.config.js index e4d04168..1c234300 100644 --- a/tests/integration/extension/rollup.config.js +++ b/tests/integration/extension/rollup.config.js @@ -52,15 +52,7 @@ export default (cliArgs) => [ resolve({ browser: true }), - commonjs(), - copy({ - targets: [ - { - src: "node_modules/@mozilla/rally/dist/rally-content.js", - dest: "dist/", - }, - ], - }), + commonjs(), ], } ];