@constructive-io/playwright-test 3.4.1 → 3.5.1

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/esm/server.js CHANGED
@@ -20,7 +20,7 @@ export const createTestServer = async (opts, serverOpts = {}) => {
20
20
  *
21
21
  * Uses the `Server` class from `@constructive-io/graphql-server` directly, so
22
22
  * every request is resolved through the scoped-routing plane
23
- * (`constructive_routing_public.resolve_route()`). Suites using this must seed
23
+ * (`routing_public.resolve_route()`). Suites using this must seed
24
24
  * real routing/database records so a real database id is resolved.
25
25
  */
26
26
  export const createScopedTestServer = async (opts, serverOpts = {}) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@constructive-io/playwright-test",
3
- "version": "3.4.1",
3
+ "version": "3.5.1",
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.4.1",
38
+ "@constructive-io/graphql-dev-server": "^3.4.2",
39
39
  "@constructive-io/graphql-env": "^3.20.0",
40
- "@constructive-io/graphql-server": "^5.4.1",
41
- "@constructive-io/graphql-test": "^5.2.1",
40
+ "@constructive-io/graphql-server": "^5.4.2",
41
+ "@constructive-io/graphql-test": "^5.2.3",
42
42
  "@constructive-io/graphql-types": "^3.19.0",
43
43
  "@pgpmjs/types": "^2.37.2",
44
44
  "express": "^5.2.1",
45
- "graphile-test": "^5.2.1",
45
+ "graphile-test": "^5.2.2",
46
46
  "pg": "^8.21.0",
47
47
  "pg-cache": "^3.16.2",
48
- "pgsql-test": "^5.1.3"
48
+ "pgsql-test": "^5.1.4"
49
49
  },
50
50
  "keywords": [
51
51
  "testing",
@@ -56,5 +56,5 @@
56
56
  "e2e",
57
57
  "integration"
58
58
  ],
59
- "gitHead": "cc1b2af2c73c23b99a221e6bd8a8ba76c7ce79e6"
59
+ "gitHead": "217ead37de876d05763874856347a48a6f356a69"
60
60
  }
package/server.d.ts CHANGED
@@ -14,7 +14,7 @@ export declare const createTestServer: (opts: ConstructiveOptions, serverOpts?:
14
14
  *
15
15
  * Uses the `Server` class from `@constructive-io/graphql-server` directly, so
16
16
  * every request is resolved through the scoped-routing plane
17
- * (`constructive_routing_public.resolve_route()`). Suites using this must seed
17
+ * (`routing_public.resolve_route()`). Suites using this must seed
18
18
  * real routing/database records so a real database id is resolved.
19
19
  */
20
20
  export declare const createScopedTestServer: (opts: ConstructiveOptions, serverOpts?: PlaywrightServerOptions) => Promise<ServerInfo>;
package/server.js CHANGED
@@ -24,7 +24,7 @@ exports.createTestServer = createTestServer;
24
24
  *
25
25
  * Uses the `Server` class from `@constructive-io/graphql-server` directly, so
26
26
  * every request is resolved through the scoped-routing plane
27
- * (`constructive_routing_public.resolve_route()`). Suites using this must seed
27
+ * (`routing_public.resolve_route()`). Suites using this must seed
28
28
  * real routing/database records so a real database id is resolved.
29
29
  */
30
30
  const createScopedTestServer = async (opts, serverOpts = {}) => {