@constructive-io/playwright-test 3.8.4 → 3.9.0

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -247,6 +247,7 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.
247
247
  ### 🧪 Testing
248
248
 
249
249
  * [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.
250
+ * [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.
250
251
  * [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.
251
252
  * [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.
252
253
  * [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": "@constructive-io/playwright-test",
3
- "version": "3.8.4",
3
+ "version": "3.9.0",
4
4
  "author": "Constructive <developers@constructive.io>",
5
5
  "description": "Constructive Playwright Testing with HTTP server support",
6
6
  "main": "index.js",
@@ -35,17 +35,17 @@
35
35
  "makage": "^0.3.0"
36
36
  },
37
37
  "dependencies": {
38
- "@constructive-io/graphql-dev-server": "^3.7.4",
39
- "@constructive-io/graphql-env": "^3.23.0",
40
- "@constructive-io/graphql-server": "^5.7.4",
41
- "@constructive-io/graphql-test": "^5.5.4",
42
- "@constructive-io/graphql-types": "^3.22.0",
43
- "@pgpmjs/types": "^2.40.0",
38
+ "@constructive-io/graphql-dev-server": "^3.8.0",
39
+ "@constructive-io/graphql-env": "^3.24.0",
40
+ "@constructive-io/graphql-server": "^5.9.0",
41
+ "@constructive-io/graphql-test": "^5.6.0",
42
+ "@constructive-io/graphql-types": "^3.23.0",
43
+ "@pgpmjs/types": "^2.42.0",
44
44
  "express": "^5.2.1",
45
- "graphile-test": "^5.5.2",
45
+ "graphile-test": "^5.6.0",
46
46
  "pg": "^8.21.0",
47
- "pg-cache": "^3.19.0",
48
- "pgsql-test": "^5.4.2"
47
+ "pg-cache": "^3.20.0",
48
+ "pgsql-test": "^5.5.0"
49
49
  },
50
50
  "keywords": [
51
51
  "testing",
@@ -56,5 +56,5 @@
56
56
  "e2e",
57
57
  "integration"
58
58
  ],
59
- "gitHead": "31f7cd3d3cc28cf069056eae5b2a0d4198d154a1"
59
+ "gitHead": "bb3269d48cdf2bc8f361bdd79b4833c921c13ec3"
60
60
  }