graphile-test 2.5.2 → 2.5.4
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 +1 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -197,6 +197,7 @@ expect(result.data.createUser.username).toBe('alice');
|
|
|
197
197
|
### 🧪 Testing
|
|
198
198
|
|
|
199
199
|
* [launchql/pgsql-test](https://github.com/launchql/launchql/tree/main/packages/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
200
|
+
* [launchql/supabase-test](https://github.com/launchql/launchql/tree/main/packages/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
200
201
|
* [launchql/graphile-test](https://github.com/launchql/launchql/tree/main/packages/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
|
201
202
|
* [launchql/pg-query-context](https://github.com/launchql/launchql/tree/main/packages/pg-query-context): **🔒 Session context injection** to add session-local context (e.g., `SET LOCAL`) into queries—ideal for setting `role`, `jwt.claims`, and other session settings.
|
|
202
203
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-test",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.4",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"graphql-tag": "2.12.6"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@launchql/types": "^2.6.
|
|
38
|
-
"graphile-settings": "^2.5.
|
|
37
|
+
"@launchql/types": "^2.6.2",
|
|
38
|
+
"graphile-settings": "^2.5.3",
|
|
39
39
|
"graphql": "15.10.1",
|
|
40
40
|
"mock-req": "^0.2.0",
|
|
41
41
|
"pg": "^8.16.0",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"launchql",
|
|
52
52
|
"test"
|
|
53
53
|
],
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "870ab4d6b6b501ac6bdda660d44a0581e2145ad4"
|
|
55
55
|
}
|