aboutsummaryrefslogtreecommitdiffstats
path: root/development/mockExtension.js
blob: 634d4263a3de36aab8117d10dc69f5b57148be0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* MockExtension
 *
 * A module for importing the global extension polyfiller
 * and stubbing out all the extension methods with appropriate mocks.
 */

const extension = require('extensionizer')
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
extension.runtime.getManifest = function () {
  return {
    version: 'development',
  }
}