From b9e89c17de2bdaaf64d3d40bd308777285ed2b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bernardino?= <11179175+anbernar@users.noreply.github.com> Date: Thu, 29 Aug 2024 11:55:34 +0100 Subject: [PATCH] fix: run type tests in test:all (#2017) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 49afd1a4b..476da8cd2 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ "test:integration": "jest -c jest.config.integration.js", "test:e2e": "yarn workspaces foreach -p run test:e2e", "test:tsd": "jest -c jest.config.types.js", - "test:all": "yarn test && yarn test:integration && yarn test:e2e && test:tsd", + "test:all": "yarn test && yarn test:integration && yarn test:e2e && yarn test:tsd", "lint:types": "tsc", "lint:eslint": "eslint './packages/**/*.{ts,tsx,js,jsx}'", "lint:all": "yarn lint:eslint && yarn lint:types",