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 23f9fd2 commit 44d2581Copy full SHA for 44d2581
src/translator/test.ts
@@ -0,0 +1,7 @@
1
+import { assertArrayIncludes } from "@std/assert/array-includes";
2
+import { translate } from "./translator.ts";
3
+
4
+Deno.test("verb with adverb", () => {
5
+ const translations = translate("mi toki pona").unwrap();
6
+ assertArrayIncludes(translations, ["I nicely communicate"]);
7
+});
0 commit comments