Skip to content

Commit

Permalink
Merge pull request #1635 from Angelelz/fix-ava-tests
Browse files Browse the repository at this point in the history
Fix ava tests
  • Loading branch information
AndriiSherman authored Dec 13, 2023
2 parents 47754fb + 1d944a8 commit ac1dd05
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ Check the full documentation on [the website](https://orm.drizzle.team)
| PostgreSQL || [Docs](https://orm.drizzle.team/docs/quick-start) | |
| MySQL || [Docs](https://orm.drizzle.team/docs/quick-start) | |
| SQLite || [Docs](https://orm.drizzle.team/docs/quick-start) | |
| Cloudflare D1 || [Docs](https://driz.li/docs-d1) | [Website](https://developers.cloudflare.com/d1) |
| Cloudflare D1 || [Docs](https://driz.link/docs-d1) | [Website](https://developers.cloudflare.com/d1) |
| libSQL || [Docs](/examples/libsql/README.md) | [Website](https://libsql.org) |
| Turso || [Docs](https://driz.li/docs-turso) | [Website](https://turso.tech) |
| PlanetScale || [Docs](https://driz.li/docs-planetscale) | [Website](https://planetscale.com/) |
| Neon || [Docs](https://driz.li/docs-neon) | [Website](https://neon.tech/) |
| Vercel Postgres || [Docs](https://driz.li/docs-vercel-postgres) | [Website](https://vercel.com/docs/storage/vercel-postgres/quickstart) |
| Supabase || [Docs](https://driz.li/docs-supabase) | [Website](https://supabase.com) |
| Turso || [Docs](https://driz.link/docs-turso) | [Website](https://turso.tech) |
| PlanetScale || [Docs](https://driz.link/docs-planetscale) | [Website](https://planetscale.com/) |
| Neon || [Docs](https://driz.link/docs-neon) | [Website](https://neon.tech/) |
| Vercel Postgres || [Docs](https://driz.link/docs-vercel-postgres) | [Website](https://vercel.com/docs/storage/vercel-postgres/quickstart) |
| Supabase || [Docs](https://driz.link/docs-supabase) | [Website](https://supabase.com) |
| DynamoDB || | |
| MS SQL || | |
| CockroachDB || | |
Expand Down
2 changes: 1 addition & 1 deletion drizzle-typebox/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:types": "cd tests && tsc",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz",
"test": "ava tests"
"test": "NODE_OPTIONS='--loader=tsx --no-warnings' ava"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion drizzle-valibot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:types": "cd tests && tsc",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz",
"test": "ava tests"
"test": "NODE_OPTIONS='--loader=tsx --no-warnings' ava"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion drizzle-zod/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:types": "cd tests && tsc",
"pack": "(cd dist && npm pack --pack-destination ..) && rm -f package.tgz && mv *.tgz package.tgz",
"publish": "npm publish package.tgz",
"test": "ava tests"
"test": "NODE_OPTIONS='--loader=tsx --no-warnings' ava"
},
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "module",
"scripts": {
"test:types": "tsc",
"test": "ava tests --timeout=60s --serial && pnpm test:esm && pnpm test:rqb",
"test": "NODE_OPTIONS='--loader=tsx --no-warnings' ava --timeout=60s --serial && pnpm test:esm && pnpm test:rqb",
"test:rqb": "vitest run --no-threads",
"test:esm": "node tests/imports.test.mjs && node tests/imports.test.cjs"
},
Expand Down

0 comments on commit ac1dd05

Please sign in to comment.