graphile-test 2.8.9 → 2.8.11
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 +7 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -207,6 +207,13 @@ expect(snapshot(res.data)).toMatchSnapshot();
|
|
|
207
207
|
|
|
208
208
|
See [`pgsql-test` Snapshot Utilities](https://www.npmjs.com/package/pgsql-test#snapshot-utilities) for the full API reference.
|
|
209
209
|
|
|
210
|
+
## 🧪 Testing
|
|
211
|
+
|
|
212
|
+
```sh
|
|
213
|
+
# requires a local Postgres available (defaults to postgres/password@localhost:5432)
|
|
214
|
+
pnpm --filter graphile-test test
|
|
215
|
+
```
|
|
216
|
+
|
|
210
217
|
---
|
|
211
218
|
|
|
212
219
|
## Education and Tutorials
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "graphile-test",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.11",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "PostGraphile Testing",
|
|
6
6
|
"main": "index.js",
|
|
@@ -38,7 +38,7 @@
|
|
|
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.14",
|
|
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": "00c90828cab8d3e306ebb2bc6053aab4aa9ae807"
|
|
52
52
|
}
|