'use strict';
let coffee = require('coffee');
describe('test nc init', function () {
this.timeout(10000);
it('should stdout error', function (done) {
coffee.fork('index', ['init'])
.expect('stdout', /Current folder is not empty./)
.end(done);
});
});