From 81d3f51fc8d06e1642d8409fecbc08a1bc9f87bb Mon Sep 17 00:00:00 2001 From: yamashu <38120991+yamashush@users.noreply.github.com> Date: Mon, 16 Jan 2023 11:15:26 +0900 Subject: [PATCH] chore: Add test reporter for cli (#122) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6b7a588e3..4f98762c3 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,7 @@ "format-check": "prettier --check '**/*.ts'", "lint": "eslint src/**/*.ts", "package": "ncc build --source-map --license licenses.txt", - "test": "jest --passWithNoTests --reporters=jest-junit --coverage", + "test": "jest --passWithNoTests --reporters=default --reporters=jest-junit --coverage", "run": "node -r dotenv/config lib/app.js", "all": "npm run build && npm run format && npm run lint && npm run package && npm test" },