From a45f7ca2ce53ff30612b818a7542228e9210b20b Mon Sep 17 00:00:00 2001 From: michaelangeloio Date: Sat, 9 Mar 2024 09:23:36 -0500 Subject: [PATCH] testing --- crates/does-it-throw/src/fixtures/sample.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/crates/does-it-throw/src/fixtures/sample.ts b/crates/does-it-throw/src/fixtures/sample.ts index da6655c..d184348 100644 --- a/crates/does-it-throw/src/fixtures/sample.ts +++ b/crates/does-it-throw/src/fixtures/sample.ts @@ -7,3 +7,8 @@ export const someConstThatThrows = () => { function callToConstThatThrows4() { someConstThatThrows() } + + +export const someConstThatDoesNotThrow = () => { + console.log('hi khue') +} \ No newline at end of file