Skip to content

Commit 6a2bd42

Browse files
committed
chore: imports
1 parent 0a3c003 commit 6a2bd42

File tree

1 file changed

+6
-4
lines changed
  • protection/makeAllPublic/tests

1 file changed

+6
-4
lines changed

protection/makeAllPublic/tests/Test.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
const fs = require("fs");
2+
const path = require("node:path");
13
const {
24
deployAndRun,
35
authTypes,
@@ -17,7 +19,7 @@ describe(testDescription, function () {
1719
query: requests,
1820
operationName: "Customer",
1921
variables: {
20-
id:1
22+
id: 1,
2123
},
2224
expected: {
2325
customer: {
@@ -32,7 +34,7 @@ describe(testDescription, function () {
3234
query: requests,
3335
operationName: "Customer",
3436
variables: {
35-
id:2
37+
id: 2,
3638
},
3739
expected: {
3840
customer: {
@@ -42,6 +44,6 @@ describe(testDescription, function () {
4244
},
4345
authType: authTypes.noAuth,
4446
},
45-
]
47+
];
4648
return deployAndRun(__dirname, tests);
47-
});
49+
});

0 commit comments

Comments
 (0)