'use strict'; var should = require('chai').should(); var sinon = require('sinon'); describe('#add', function() { before(function() { // setup testing directories }); after(function() { // cleanup testing directories }); describe('will modify scaffold files', function() { it('will give an error if expected files do not exist', function() { }); it('will update bitcore-node.json modules', function() { }); it('will update package.json modules', function() { }); it('will install the necessary node.js modules', function() { }); it('will install dependencies', function() { }); }); });