aboutsummaryrefslogtreecommitdiffstats
path: root/development/mockExtension.js
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2016-07-22 09:08:35 +0800
committerDan Finlay <dan@danfinlay.com>2016-07-22 09:08:35 +0800
commit5b4e2ffeaccf105d425d83407b82805c124e2cca (patch)
treee2a9e90a064e09c48eac089901a1951458213e1b /development/mockExtension.js
parent0bbfedc2bf21d8c3eec17fef35e93a98a946469e (diff)
downloadtangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.tar
tangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.tar.gz
tangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.tar.bz2
tangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.tar.lz
tangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.tar.xz
tangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.tar.zst
tangerine-wallet-browser-5b4e2ffeaccf105d425d83407b82805c124e2cca.zip
Add mock dev mode
Diffstat (limited to 'development/mockExtension.js')
-rw-r--r--development/mockExtension.js39
1 files changed, 39 insertions, 0 deletions
diff --git a/development/mockExtension.js b/development/mockExtension.js
new file mode 100644
index 000000000..509487cce
--- /dev/null
+++ b/development/mockExtension.js
@@ -0,0 +1,39 @@
+/* MockExtension
+ *
+ * A module for importing the global extension polyfiller
+ * and stubbing out all the extension methods with appropriate mocks.
+ */
+
+const extension = require('../app/scripts/lib/extension')
+const noop = function () {}
+
+const apis = [
+ 'alarms',
+ 'bookmarks',
+ 'browserAction',
+ 'commands',
+ 'contextMenus',
+ 'cookies',
+ 'downloads',
+ 'events',
+ 'extension',
+ 'extensionTypes',
+ 'history',
+ 'i18n',
+ 'idle',
+ 'notifications',
+ 'pageAction',
+ 'runtime',
+ 'storage',
+ 'tabs',
+ 'webNavigation',
+ 'webRequest',
+ 'windows',
+]
+
+apis.forEach(function (api) {
+ extension[api] = {}
+})
+
+extension.runtime.reload = noop
+extension.tabs.create = noop