DRY up core tests

This commit is contained in:
Jonathan Clem
2019-05-21 11:23:35 -04:00
parent 4439c53a40
commit a52644e6dd
3 changed files with 59 additions and 165 deletions

View File

@@ -7,7 +7,7 @@
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:test\" \"npm:build -- -- --noEmit\"",
"format": "prettier --write packages/**/*.ts",
"format-check": "prettier --check packages/**/*.ts",
"lint": "eslint packages/*/src/**/*.ts",
"lint": "eslint packages/**/*.ts",
"new-package": "scripts/create-package",
"test": "jest"
},