diff options
| -rw-r--r-- | lib/settings.coffee (renamed from background_scripts/settings.coffee) | 0 | ||||
| -rw-r--r-- | manifest.json | 2 | ||||
| -rw-r--r-- | tests/unit_tests/exclusion_test.coffee | 2 | ||||
| -rw-r--r-- | tests/unit_tests/settings_test.coffee | 2 | ||||
| -rw-r--r-- | tests/unit_tests/utils_test.coffee | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/background_scripts/settings.coffee b/lib/settings.coffee index 607264a2..607264a2 100644 --- a/background_scripts/settings.coffee +++ b/lib/settings.coffee diff --git a/manifest.json b/manifest.json index 390b8c8c..f0c51117 100644 --- a/manifest.json +++ b/manifest.json @@ -9,7 +9,7 @@ "background": { "scripts": [ "lib/utils.js", - "background_scripts/settings.js", + "lib/settings.js", "background_scripts/commands.js", "lib/clipboard.js", "background_scripts/exclusions.js", diff --git a/tests/unit_tests/exclusion_test.coffee b/tests/unit_tests/exclusion_test.coffee index 097e1f30..28c17a2f 100644 --- a/tests/unit_tests/exclusion_test.coffee +++ b/tests/unit_tests/exclusion_test.coffee @@ -14,7 +14,7 @@ root.Marks = extend(global, require "../../lib/utils.js") Utils.getCurrentVersion = -> '1.44' -extend(global,require "../../background_scripts/settings.js") +extend(global,require "../../lib/settings.js") Settings.init() extend(global, require "../../background_scripts/exclusions.js") extend(global, require "../../background_scripts/commands.js") diff --git a/tests/unit_tests/settings_test.coffee b/tests/unit_tests/settings_test.coffee index b44a904f..946a1688 100644 --- a/tests/unit_tests/settings_test.coffee +++ b/tests/unit_tests/settings_test.coffee @@ -4,7 +4,7 @@ extend global, require "./test_chrome_stubs.js" extend(global, require "../../lib/utils.js") Utils.getCurrentVersion = -> '1.44' global.localStorage = {} -extend(global,require "../../background_scripts/settings.js") +extend(global,require "../../lib/settings.js") context "settings", diff --git a/tests/unit_tests/utils_test.coffee b/tests/unit_tests/utils_test.coffee index 283f0ca0..f9ed3636 100644 --- a/tests/unit_tests/utils_test.coffee +++ b/tests/unit_tests/utils_test.coffee @@ -2,7 +2,7 @@ require "./test_helper.js" extend global, require "./test_chrome_stubs.js" extend(global, require "../../lib/utils.js") Utils.getCurrentVersion = -> '1.43' -extend(global, require "../../background_scripts/settings.js") +extend(global, require "../../lib/settings.js") Settings.init() context "isUrl", |
