Tests
All checks were successful
Lint / lint (push) Successful in 10s

This commit is contained in:
Julien Valverdé
2025-01-21 02:46:12 +01:00
parent 630c7d7b6c
commit e2bd448654

View File

@@ -13,9 +13,9 @@ function RouteComponent() {
// )) // ))
R.useSuspenseScoped(Effect.addFinalizer(() => Console.log("cleanup")).pipe( R.useSuspenseScoped(Effect.addFinalizer(() => Console.log("cleanup")).pipe(
Effect.andThen(Effect.promise(() => new Promise<string>(resolve => Effect.andThen(Effect.promise(() => new Promise<string>(resolve => {
resolve("test") setTimeout(() => { resolve("test") }, 0)
))), }))),
Effect.tap(Console.log), Effect.tap(Console.log),
), []) ), [])