aboutsummaryrefslogblamecommitdiffstats
path: root/development/mockExtension.js
blob: 634d4263a3de36aab8117d10dc69f5b57148be0d (plain) (tree)
1
2
3
4
5
6
7





                                                                     
                                          































                               

                                             
                           
   
 
/* 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',
  }
}