From 82169e898d17791ad6bb0a3b7aebd4f0dc112e43 Mon Sep 17 00:00:00 2001 From: Andrew Kirkegaard Date: Thu, 11 Mar 2021 13:43:34 -0600 Subject: [PATCH] Fix pre-push githook --- .githooks/pre-push | 2 +- package.json | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.githooks/pre-push b/.githooks/pre-push index 3393c85..53e066f 100755 --- a/.githooks/pre-push +++ b/.githooks/pre-push @@ -1 +1 @@ -yarn tests +yarn test diff --git a/package.json b/package.json index 5a843f3..2156550 100644 --- a/package.json +++ b/package.json @@ -6,8 +6,7 @@ "scripts": { "clean": "tsc -b --clean", "lint": "eslint '**/*.{ts,tsx}'", - "pretest": "yarn run lint", - "test": "yarn run pretest && jest", + "test": "jest", "prebuild": "yarn test", "build": "yarn run prebuild && tsc -b" },