From 8809acabae0033cc874f0f2abd7b342e8dc10f6f Mon Sep 17 00:00:00 2001 From: cexbrayat Date: Fri, 30 Aug 2019 19:07:30 +0200 Subject: [PATCH] fix: remove test from readme The generated README was mentionning: ### Run your tests ``` npm run test ``` but `npm run test` throws: Error: no test specified This removes the mention of this command from the generated README. --- packages/@vue/cli/lib/util/generateReadme.js | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/@vue/cli/lib/util/generateReadme.js b/packages/@vue/cli/lib/util/generateReadme.js index e251d65a98..d6154b1e2e 100644 --- a/packages/@vue/cli/lib/util/generateReadme.js +++ b/packages/@vue/cli/lib/util/generateReadme.js @@ -2,7 +2,6 @@ const descriptions = { build: 'Compiles and minifies for production', serve: 'Compiles and hot-reloads for development', lint: 'Lints and fixes files', - test: 'Run your tests', 'test:e2e': 'Run your end-to-end tests', 'test:unit': 'Run your unit tests' }