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 fcadf92 commit 831badaCopy full SHA for 831bada
rest/tls/tests/Test.js
@@ -0,0 +1,15 @@
1
+const fs = require("fs");
2
+const path = require("node:path");
3
+const {
4
+ deployAndRun,
5
+ stepzen,
6
+ getTestDescription,
7
+} = require("../../../tests/gqltest.js");
8
+
9
+testDescription = getTestDescription("snippets", __dirname);
10
11
+describe(testDescription, function () {
12
+ // empty tests since this test is not valid for SaaS
13
+ const tests = [];
14
+ return deployAndRun(__dirname, tests, stepzen.admin);
15
+});
0 commit comments