add skipped tests to mocha index page

This commit is contained in:
Gregg Zigler 2014-08-18 10:08:10 -07:00
parent 7b28837640
commit ecf262ceea
2 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,8 @@
<script src="test.Wallet.js"></script>
<script src="test.WalletFactory.js"></script>
<script src="test.performance.js"></script>
<!--
-->
<script>
mocha.run();
</script>

View File

@ -3,6 +3,7 @@
var chai = require('chai');
var should = chai.should();
var Storage = require('../js/models/storage/File.js');
var sinon = require('sinon');
var crypto = require('crypto');
var CryptoJS = require('node-cryptojs-aes').CryptoJS;
@ -202,3 +203,4 @@ describe('Storage/File', function() {
});
});