aboutsummaryrefslogtreecommitdiffstats
path: root/lang/js/BrowserTestExtension/tests/startup.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--lang/js/BrowserTestExtension/tests/startup.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/lang/js/BrowserTestExtension/tests/startup.js b/lang/js/BrowserTestExtension/tests/startup.js
index d434b6d4..dae94025 100644
--- a/lang/js/BrowserTestExtension/tests/startup.js
+++ b/lang/js/BrowserTestExtension/tests/startup.js
@@ -22,7 +22,6 @@
*/
/* global describe, it, expect, Gpgmejs */
-/* global inputvalues */
describe('GPGME context', function(){
it('Starting a GpgME instance', function(done){
@@ -36,19 +35,3 @@ describe('GPGME context', function(){
});
});
});
-
-describe('GPGME does not start with invalid parameters', function(){
- for (let i=0; i < inputvalues.init.invalid_startups.length; i++){
- it('Parameter '+ i, function(done){
- let prm = Gpgmejs.init(inputvalues.init.invalid_startups[i]);
- prm.then(function(context){
- expect(context).to.be.undefined;
- done();
- }, function(error){
- expect(error).to.be.an.instanceof(Error);
- expect(error.code).to.equal('PARAM_WRONG');
- done();
- });
- });
- }
-}); \ No newline at end of file