We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a3c003 commit 6a2bd42Copy full SHA for 6a2bd42
protection/makeAllPublic/tests/Test.js
@@ -1,3 +1,5 @@
1
+const fs = require("fs");
2
+const path = require("node:path");
3
const {
4
deployAndRun,
5
authTypes,
@@ -17,7 +19,7 @@ describe(testDescription, function () {
17
19
query: requests,
18
20
operationName: "Customer",
21
variables: {
- id:1
22
+ id: 1,
23
},
24
expected: {
25
customer: {
@@ -32,7 +34,7 @@ describe(testDescription, function () {
32
34
33
35
36
- id:2
37
+ id: 2,
38
39
40
@@ -42,6 +44,6 @@ describe(testDescription, function () {
42
44
43
45
authType: authTypes.noAuth,
46
- ]
47
+ ];
48
return deployAndRun(__dirname, tests);
-});
49
+});
0 commit comments