We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2359ed7 commit 6e87647Copy full SHA for 6e87647
typescript/packages/playground-common/src/baml_wasm_web/EventListener.tsx
@@ -328,14 +328,12 @@ export const EventListener: React.FC = () => {
328
setSelectedFunction(content.function_name);
329
setSelectedTestcase(content.test_name);
330
331
+ // NB(sam): without this timeout, jetbrains hits "recursive use of an object"
332
setTimeout(() => {
333
runBamlTests([
334
{ functionName: content.function_name, testName: content.test_name },
335
]);
336
}, 1000);
- // run([content.test_name])
337
- // setShowTests(true)
338
- // setClientGraph(false)
339
break;
340
}
341
};
0 commit comments