aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/BrowserTestExtension/tests/startup.js
diff options
context:
space:
mode:
Diffstat (limited to 'lang/js/BrowserTestExtension/tests/startup.js')
-rw-r--r--lang/js/BrowserTestExtension/tests/startup.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/lang/js/BrowserTestExtension/tests/startup.js b/lang/js/BrowserTestExtension/tests/startup.js
index a5614a83..5de70a6b 100644
--- a/lang/js/BrowserTestExtension/tests/startup.js
+++ b/lang/js/BrowserTestExtension/tests/startup.js
@@ -36,22 +36,6 @@
});
});
});
-describe('openpgp mode', function(){
- it('startup of openpgp mode returns the correct parameters', function(done){
- let prm = Gpgmejs.init({api_style:"gpgme_openpgpjs"});
- prm.then(function(context){
- expect(context).to.be.an('object');
- expect(context.connection).to.be.undefined;
- expect(context.Keyring).to.be.an('object');
- expect(context.encrypt).to.be.a('function');
- expect(context.decrypt).to.be.a('function');
- done();
- }, function(error){
- expect(error).to.be.undefined;
- done();
- });
- });
-});
describe('GPGME does not start with invalid parameters', function(){
for (let i=0; i < inputvalues.init.invalid_startups.length; i++){