graphile-test 2.8.0 → 2.8.3
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 +4 -4
package/README.md
CHANGED
|
@@ -209,9 +209,12 @@ Master the workflow for adding, organizing, and managing database changes with p
|
|
|
209
209
|
Master end-to-end PostgreSQL testing with ephemeral databases, RLS testing, and CI/CD automation.
|
|
210
210
|
|
|
211
211
|
5. ⚡ [Supabase Testing](https://launchql.com/learn/supabase)
|
|
212
|
-
TypeScript-
|
|
212
|
+
Use TypeScript-first tools to test Supabase projects with realistic RLS, policies, and auth contexts.
|
|
213
213
|
|
|
214
|
-
6.
|
|
214
|
+
6. 💧 [Drizzle ORM Testing](https://launchql.com/learn/drizzle-testing)
|
|
215
|
+
Run full-stack tests with Drizzle ORM, including database setup, teardown, and RLS enforcement.
|
|
216
|
+
|
|
217
|
+
7. 🔧 [Troubleshooting](https://launchql.com/learn/troubleshooting)
|
|
215
218
|
Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
216
219
|
|
|
217
220
|
## Related LaunchQL Tooling
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-test",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.3",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,11 +34,11 @@
|
|
|
34
34
|
"graphql-tag": "2.12.6"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@launchql/types": "^2.8.
|
|
37
|
+
"@launchql/types": "^2.8.3",
|
|
38
38
|
"graphql": "15.10.1",
|
|
39
39
|
"mock-req": "^0.2.0",
|
|
40
40
|
"pg": "^8.16.0",
|
|
41
|
-
"pgsql-test": "^2.14.
|
|
41
|
+
"pgsql-test": "^2.14.6",
|
|
42
42
|
"postgraphile": "^4.14.1"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"launchql",
|
|
49
49
|
"test"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "4850ef84ce134d1bb43dc9132619a59257bd1157"
|
|
52
52
|
}
|