fix tests

This commit is contained in:
Matias Alejo Garcia 2016-06-17 11:10:56 -03:00
parent b4a5c9212f
commit e2a92bd5b9
No known key found for this signature in database
GPG Key ID: 02470DB551277AB3
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,7 @@ describe('Backup Controller', function() {
});
it('should set the mnemonic incomplete wallets', function(done) {
scope.initFlow();
should.exist(scope.mnemonicWords);
scope.mnemonicWords.should.deep.equal('dizzy cycle skirt decrease exotic fork sure mixture hair vapor copper hero'.split(' '));
done();
@ -36,6 +37,7 @@ describe('Backup Controller', function() {
});
it('should not set the mnemonic for complete wallets', function() {
scope.initFlow();
scope.mnemonicWords.should.deep.equal('cheese where alarm job conduct donkey license pave congress pepper fence current'.split(' '));
});