diff options
Diffstat (limited to 'tests/testdata/inspector/inspector_test.js')
-rw-r--r-- | tests/testdata/inspector/inspector_test.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/testdata/inspector/inspector_test.js b/tests/testdata/inspector/inspector_test.js index 86cd48854..e1ac7b635 100644 --- a/tests/testdata/inspector/inspector_test.js +++ b/tests/testdata/inspector/inspector_test.js @@ -1,3 +1,6 @@ Deno.test("basic test", () => { - console.log("test has finished running"); + const value = 1 + 1; + if (value !== 2) { + throw new Error("failed"); + } }); |