nifty-wallet/test/spec/test.js

12 lines
229 B
JavaScript
Raw Normal View History

2015-07-31 18:38:02 -07:00
(function () {
'use strict';
describe('Give it some context', function () {
describe('maybe a bit more context here', function () {
it('should run here few assertions', function () {
});
});
});
})();