From 7b35ee4d5326e2287877abeb9f80eb5c37892fcb Mon Sep 17 00:00:00 2001 From: aewshyae <1528058+aewshyae@users.noreply.github.com> Date: Sun, 5 Sep 2021 15:42:06 +0900 Subject: [PATCH] fix: 'npm run test' fails because the last command lacks 'yarn' --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index cc48752a14e8..59bc425cc56d 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "ls-lint": "npx @ls-lint/ls-lint", "nuxt": "jiti ./packages/cli/bin/nuxt-cli.js", "pkg": "jiti ./scripts/pkg.js", - "test": "yarn test:fixtures && yarn test:dev && yarn test:unit && test:types", + "test": "yarn test:fixtures && yarn test:dev && yarn test:unit && yarn test:types", "test:dev": "jest test/dev --forceExit --runInBand", "test:e2e": "jest -i test/e2e --forceExit", "test:fixtures": "jest test/fixtures --forceExit",