diff options
Diffstat (limited to 'tests/specs/info_tests/json_file/json_output/main.ts')
-rw-r--r-- | tests/specs/info_tests/json_file/json_output/main.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/specs/info_tests/json_file/json_output/main.ts b/tests/specs/info_tests/json_file/json_output/main.ts new file mode 100644 index 000000000..d9029af8a --- /dev/null +++ b/tests/specs/info_tests/json_file/json_output/main.ts @@ -0,0 +1,11 @@ +import { printHello3, returnsFoo2, returnsHi } from "../mod1.ts"; + +printHello3(); + +if (returnsHi() !== "Hi") { + throw Error("Unexpected"); +} + +if (returnsFoo2() !== "Foo") { + throw Error("Unexpected"); +} |