Merge pull request #49 from matiu/javier

fix tests
This commit is contained in:
Javier Donadío 2016-06-17 11:12:34 -03:00 committed by GitHub
commit 952d7db2be

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(' '));
});