1f7b19512c
-- * Extensions: - Moved testapplication to Demoextension - Created BrowserTestExtension. Includes mocha and chai. For running tests that cannot be run outside a WebExtension Both Extensions can be found zipped in build/extensions after running build_extensions.sh * Code changes: - src/Config: Place for the configuration - small fixes raised during testing in Keyring.js, Message.js, - src/gpgmejs_openpgpjs.js don't offer direct GpgME object to the outside, as it only causes confusion - index.js init() now checks the config for validity * Tests: - Reordered tests in test/. - Input values are now in a separate file which may be of use for bulk testing * moved the build directory from dist to build
14 lines
362 B
JSON
14 lines
362 B
JSON
{
|
|
"manifest_version": 2,
|
|
|
|
"name": "Browsertests for gpgmejs",
|
|
"description": "Run the browsertests.",
|
|
"version": "0.1",
|
|
"content_security_policy": "default-src 'self' filesystem:",
|
|
"browser_action": {
|
|
"default_icon": "testicon.png",
|
|
"default_popup": "popup.html"
|
|
},
|
|
"permissions": ["nativeMessaging", "activeTab"]
|
|
}
|