diff --git a/jest.config.js b/jest.config.js index 115ea38..a99424e 100644 --- a/jest.config.js +++ b/jest.config.js @@ -10,9 +10,6 @@ const config = { verbose: true, cache: false, coverageReporters: ["text", "text-summary", "html"], - coveragePathIgnorePatterns: [ - "library/adapter/discord-js-adapter", - "library/adapter/test-adapter", - ], + coveragePathIgnorePatterns: ["discord-js-adapter", "test/setup-testing"], } export default config diff --git a/package.json b/package.json index cf54318..83938e7 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "lint": "eslint --ext js,ts,tsx .", "lint-fix": "pnpm lint -- --fix", "format": "prettier --write .", - "test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js", + "test": "node --experimental-vm-modules --no-warnings ./node_modules/jest/bin/jest.js --colors", "test-watch": "pnpm test -- --watch", "coverage": "pnpm test -- --coverage", "typecheck": "tsc --noEmit",