From a8e057076256fdb412ae1c2b25a226a557c76b3e Mon Sep 17 00:00:00 2001 From: MapleLeaf <19603573+itsMapleLeaf@users.noreply.github.com> Date: Wed, 22 Dec 2021 14:11:06 -0600 Subject: [PATCH] run tests with colors --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index c5a82aa..d4b82aa 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,8 @@ "lint": "eslint --ext js,ts,tsx .", "lint-fix": "pnpm lint -- --fix", "format": "prettier --write .", - "test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js", - "test-watch": "node --experimental-vm-modules --no-warnings --inspect-brk node_modules/jest/bin/jest.js --watch --runInBand", + "test": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --colors", + "test-watch": "node --experimental-vm-modules --no-warnings --inspect-brk node_modules/jest/bin/jest.js --watch --colors --runInBand", "coverage": "pnpm test -- --coverage", "typecheck": "tsc --noEmit" },