Skip to content

Commit

Permalink
remove-unstable-case
Browse files Browse the repository at this point in the history
  • Loading branch information
uriva committed Nov 15, 2023
1 parent f1cae01 commit 138a1b5
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions src/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,6 @@ Deno.test("basic", async () => {
assertEquals([53, 44].map(f), [true, false]);
});

Deno.test("complex", async () => {
const f = await makeFunction({
iterations: 2,
description: "determine if a word is a stop word",
testCases: [
["building", false],
["is", true],
["growth", false],
["that", true],
],
});
await waitAllWrites();
assertEquals(["this", "tree"].map(f), [true, false]);
});

Deno.test("composite output / input", async () => {
const f = await makeFunction({
iterations: 2,
Expand Down

0 comments on commit 138a1b5

Please sign in to comment.