From 5619139630683d65ae471bd30caccb8fbfb48767 Mon Sep 17 00:00:00 2001 From: Taylor Beseda Date: Fri, 2 Feb 2024 10:33:11 -0700 Subject: [PATCH] include types test in main test command --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 279be26a..049da993 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-arc", "test:integration": "cross-env tape 'test/integration/**/*-test.js' | tap-arc", "coverage": "nyc --reporter=lcov --reporter=text npm run test:unit", - "test": "npm run lint && npm run test:integration && npm run coverage", + "test": "npm run lint && npm run test:integration && npm run coverage && npm run test:types", "test:types": "tsd --files types/*.test-d.ts", "rc": "npm version prerelease --preid RC" },