From 70475fa17c012cd6296f8f01dd6e2f5d09d884c9 Mon Sep 17 00:00:00 2001 From: Ivan Socolsky Date: Sun, 8 Feb 2015 11:36:15 -0300 Subject: [PATCH] remove recreate wallet test --- test/integration.js | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/test/integration.js b/test/integration.js index c8664b7..249d911 100644 --- a/test/integration.js +++ b/test/integration.js @@ -252,29 +252,6 @@ describe('Copay server', function() { }); }); - // non sense with server generated UUIDs - it.skip('should fail to recreate existing wallet', function(done) { - var opts = { - id: '123', - name: 'my wallet', - m: 2, - n: 3, - pubKey: aPubKey, - }; - server.createWallet(opts, function(err) { - should.not.exist(err); - server.storage.fetchWallet('123', function(err, wallet) { - should.not.exist(err); - wallet.id.should.equal('123'); - wallet.name.should.equal('my wallet'); - server.createWallet(opts, function(err) { - should.exist(err); - done(); - }); - }); - }); - }); - it('should fail to create wallet with invalid copayer pairs', function(done) { var invalidPairs = [{ m: 0,