graphql-server-test 3.8.3 → 3.8.5
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 +8 -8
package/README.md
CHANGED
|
@@ -275,6 +275,7 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
|
|
|
275
275
|
### 🧪 Testing
|
|
276
276
|
|
|
277
277
|
* [pgsql-test](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-test): **📊 Isolated testing environments** with per-test transaction rollbacks—ideal for integration tests, complex migrations, and RLS simulation.
|
|
278
|
+
* [pglite-test](https://github.com/constructive-io/constructive/tree/main/postgres/pglite-test): **🪶 Drop-in pgsql-test replacement backed by PGlite** — in-process Postgres, no server required, instance-per-suite isolation.
|
|
278
279
|
* [pgsql-seed](https://github.com/constructive-io/constructive/tree/main/postgres/pgsql-seed): **🌱 PostgreSQL seeding utilities** for CSV, JSON, SQL data loading, and pgpm deployment.
|
|
279
280
|
* [supabase-test](https://github.com/constructive-io/constructive/tree/main/postgres/supabase-test): **🧪 Supabase-native test harness** preconfigured for the local Supabase stack—per-test rollbacks, JWT/role context helpers, and CI/GitHub Actions ready.
|
|
280
281
|
* [graphile-test](https://github.com/constructive-io/constructive/tree/main/graphile/graphile-test): **🔐 Authentication mocking** for Graphile-focused test helpers and emulating row-level security contexts.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphql-server-test",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.5",
|
|
4
4
|
"author": "Constructive <developers@constructive.io>",
|
|
5
5
|
"description": "Constructive GraphQL Server Testing with SuperTest HTTP requests",
|
|
6
6
|
"main": "index.js",
|
|
@@ -30,9 +30,9 @@
|
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@0no-co/graphql.web": "^1.2.0",
|
|
33
|
-
"@agentic-kit/ollama": "2.7.
|
|
34
|
-
"@constructive-io/graphql-codegen": "^5.7.
|
|
35
|
-
"@constructive-io/graphql-query": "^4.5.
|
|
33
|
+
"@agentic-kit/ollama": "2.7.2",
|
|
34
|
+
"@constructive-io/graphql-codegen": "^5.7.5",
|
|
35
|
+
"@constructive-io/graphql-query": "^4.5.5",
|
|
36
36
|
"@types/express": "^5.0.6",
|
|
37
37
|
"@types/pg": "^8.20.0",
|
|
38
38
|
"@types/supertest": "^7.2.0",
|
|
@@ -43,14 +43,14 @@
|
|
|
43
43
|
"nested-obj": "^0.2.2"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@constructive-io/graphql-dev-server": "^3.7.
|
|
46
|
+
"@constructive-io/graphql-dev-server": "^3.7.5",
|
|
47
47
|
"@constructive-io/graphql-env": "^3.23.0",
|
|
48
|
-
"@constructive-io/graphql-server": "^5.7.
|
|
48
|
+
"@constructive-io/graphql-server": "^5.7.5",
|
|
49
49
|
"@constructive-io/graphql-types": "^3.22.0",
|
|
50
50
|
"@constructive-io/upload-client": "0.20.0",
|
|
51
51
|
"@pgpmjs/types": "^2.40.0",
|
|
52
52
|
"express": "^5.2.1",
|
|
53
|
-
"graphile-schema": "^2.5.
|
|
53
|
+
"graphile-schema": "^2.5.5",
|
|
54
54
|
"graphql": "16.13.0",
|
|
55
55
|
"pg": "^8.21.0",
|
|
56
56
|
"pg-cache": "^3.19.0",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"e2e",
|
|
69
69
|
"server"
|
|
70
70
|
],
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "6f85eefed51d88b3a857ff36d20da44b7ebb47c9"
|
|
72
72
|
}
|