supabase-test 0.2.3 → 0.2.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -640,9 +640,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
640
640
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
641
641
|
|
|
642
642
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
643
|
-
TypeScript-
|
|
643
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
644
644
|
|
|
645
|
-
6.
|
|
645
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
646
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
647
|
+
|
|
648
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
646
649
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
647
650
|
|
|
648
651
|
## Related LaunchQL Tooling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "supabase-test",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"author": "Interweb <developers@interweb.io>",
|
|
5
5
|
"description": "supabase-test offers isolated, role-aware, and rollback-friendly PostgreSQL environments for integration tests with Supabase defaults baked in",
|
|
6
6
|
"main": "index.js",
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"test:watch": "jest --watch"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
|
-
"@launchql/types": "^2.8.
|
|
56
|
-
"pg-env": "^1.1.
|
|
57
|
-
"pgsql-test": "^2.14.
|
|
55
|
+
"@launchql/types": "^2.8.3",
|
|
56
|
+
"pg-env": "^1.1.5",
|
|
57
|
+
"pgsql-test": "^2.14.6"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
60
60
|
}
|