cljs-dev 2026-03-08

@borkdude couldn't find any issues w/ async/await patch, I added some additional simple tests

async/await support merged - would be good for folks to play around with

🎉 10

thanks for the merge. one more idea I had is to improve the async testing story. the cljs.test async macro now has support for async/await. we can just document this:

(deftest foo
  (async done
    (try 
      (let [x (await 10)] ...)
      (finally done)))
or we could support
(deftest ^:async foo
  (let [x (await 10)] ...))
to get rid of the ceremony by automatically doing the first version based on the metadata

yeah, something to think about