diff --git a/tests/test-cli/test-init.js b/test/cli-tests/test-init.js similarity index 70% rename from tests/test-cli/test-init.js rename to test/cli-tests/test-init.js index 29b3a54d69..2ebdf75523 100644 --- a/tests/test-cli/test-init.js +++ b/test/cli-tests/test-init.js @@ -59,26 +59,5 @@ describe('init', function () { done() }) }) - - it('force', (done) => { - nexpect.spawn('node', [process.cwd() + '/src/cli/bin.js', 'init', '--bits', '64', '--force']) - .run((err, stdout, exitcode) => { - expect(err).to.not.exist - expect(exitcode).to.equal(0) - - nexpect.spawn('node', [process.cwd() + '/src/cli/bin.js', 'init', '--bits', '64']) - .run((err, stdout, exitcode) => { - expect(err).to.not.exist - expect(exitcode).to.equal(1) - - nexpect.spawn('node', [process.cwd() + '/src/cli/bin.js', 'init', '--bits', '64', '--force']) - .run((err, stdout, exitcode) => { - expect(err).to.not.exist - expect(exitcode).to.equal(0) - done() - }) - }) - }) - }) })