From 488067e4c7994882fd36ba339bd5539d85604b07 Mon Sep 17 00:00:00 2001 From: jamesgeorge007 Date: Tue, 26 Nov 2019 08:54:06 +0530 Subject: [PATCH] test: drop --- tests/unit/test.program.js | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/unit/test.program.js b/tests/unit/test.program.js index d22550953a..4dbe1573a6 100644 --- a/tests/unit/test.program.js +++ b/tests/unit/test.program.js @@ -70,15 +70,6 @@ describe('program.Program', () => { })); }); - it('recommends matching commands', () => { - const program = new Program(['buld']); - return execProgram(program) - .then(makeSureItFails()) - .catch((error) => { - assert.match(error.message, /Did you mean build/); - }); - }); - it('exits 1 on a thrown error', () => { const fakeProcess = createFakeProcess(); const program = new Program(['cmd'])