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 afa610f commit 8bf029aCopy full SHA for 8bf029a
deno-email-api/Makefile
@@ -0,0 +1,4 @@
1
+-include ../.env
2
+
3
+test:
4
+ API_KEY=$(API_KEY) deno test
deno-email-api/deno.test.ts
@@ -0,0 +1,6 @@
+import { InboxControllerApi } from "https://raw.githubusercontent.com/mailslurp/mailslurp-client-deno/11.7.9/index.ts";
+import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
+Deno.test("can create controllers", () => {
5
+ assertEquals(!!InboxControllerApi, true);
6
+})
0 commit comments