Skip to content

Commit 831bada

Browse files
committed
Add dummy test to do deploy
1 parent fcadf92 commit 831bada

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

rest/tls/tests/Test.js

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)