From 37b170c3814325a8674bc4262937bcd33a71d2af Mon Sep 17 00:00:00 2001 From: Chris Raible Date: Wed, 28 Aug 2024 10:01:14 -0700 Subject: [PATCH] Added type checks to admin-x-design-system unit tests --- apps/admin-x-design-system/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/admin-x-design-system/package.json b/apps/admin-x-design-system/package.json index 744972738f..078e36123e 100644 --- a/apps/admin-x-design-system/package.json +++ b/apps/admin-x-design-system/package.json @@ -11,8 +11,8 @@ "scripts": { "build": "concurrently \"vite build\" \"tsc -p tsconfig.declaration.json\"", "prepare": "yarn build", - "test": "yarn test:unit && yarn test:types", - "test:unit": "yarn nx build && vitest run", + "test": "yarn test:unit", + "test:unit": "yarn test:types && yarn nx build && vitest run", "test:types": "tsc --noEmit", "lint:code": "eslint --ext .js,.ts,.cjs,.tsx src/ --cache", "lint": "yarn lint:code && yarn lint:test",