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" },