From 6906cde5bf1e8db5af165de97e1b05f799effbea Mon Sep 17 00:00:00 2001 From: Martijn Walraven Date: Thu, 11 Oct 2018 20:53:40 +0200 Subject: [PATCH] Add `test:clean` run command to clean Jest cache --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 1c268086..b9f990d9 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,7 @@ "lint": "prettier-check '**/*.{js,ts}'", "lint-fix": "prettier '**/*.{js,ts}' --write", "test": "jest --verbose", + "test:clean": "jest --clearCache", "test:watch": "jest --verbose --watch", "testonly": "npm test", "test:ci": "npm run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",