Skip to content

Commit 8bf029a

Browse files
author
Wusi
committed
deno-exmaples
1 parent afa610f commit 8bf029a

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

deno-email-api/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
-include ../.env
2+
3+
test:
4+
API_KEY=$(API_KEY) deno test

deno-email-api/deno.test.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { InboxControllerApi } from "https://raw.githubusercontent.com/mailslurp/mailslurp-client-deno/11.7.9/index.ts";
2+
import { assertEquals } from "https://deno.land/[email protected]/testing/asserts.ts";
3+
4+
Deno.test("can create controllers", () => {
5+
assertEquals(!!InboxControllerApi, true);
6+
})

0 commit comments

Comments
 (0)