Skip to content

Commit

Permalink
Force a test failure
Browse files Browse the repository at this point in the history
  • Loading branch information
hoodmane committed Dec 22, 2024
1 parent 78fd3c7 commit b0effff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ suite("types.ts", async () => {
function getObject(name: string): TopLevelIR {
const obj = map.get(name);
assert(obj);
return obj;
return obj!;
}
suite("basic", async () => {
for (const [obj_name, type_name] of [
["bool", "boolean"],
["bool", "boolean1"],
["num", "number"],
["str", "string"],
["array", "number[]"],
Expand Down

0 comments on commit b0effff

Please sign in to comment.