dev: add test-dev command for easier testing of packages (#2627)

@si14 you might know a better way to wire this up! lemme know if there's
something more clever here.

### Change Type

- [x] `internal` — Any other changes that don't affect the published
package[^2]

### Release Notes

- Adds easier testing command for individual packages.
This commit is contained in:
Mime Čuvalo 2024-01-29 10:29:38 +00:00 committed by GitHub
parent d82344bf15
commit 23f60ee98e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 13 additions and 1 deletions

View file

@ -11,6 +11,7 @@
"scripts": {
"dev": "cross-env NODE_ENV=development wrangler dev --log-level info --persist-to tmp-assets",
"test": "lazy inherit --passWithNoTests",
"test-dev": "yarn run -T jest --watch",
"test-coverage": "lazy inherit --passWithNoTests",
"lint": "yarn run -T tsx ../../scripts/lint.ts"
},