You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently when cljs-test-display runs a successful test run it gives you a notification that the build has succeeded. This is a nice feature but unfortunately these do persist afterwards and keep on piling up. It is not rare to see over 50 notifications waiting when doing ClojureScript programming with cljs-test-display on.
Maybe I'm the only one using Windows? :) Native notifications in Windows do persist if you do not remove those either programmatically or manually. It actually makes sense that they do and I'm a little shocked that other operating systems would lose that information: you might miss something important. If programmer explicitly removes the notification then it is kinda obvious that no harm is done if it is missed.
Currently when cljs-test-display runs a successful test run it gives you a notification that the build has succeeded. This is a nice feature but unfortunately these do persist afterwards and keep on piling up. It is not rare to see over 50 notifications waiting when doing ClojureScript programming with cljs-test-display on.
This is fortunately easily remedied: by using the Notifications API
.close()
method one can close these success build notifications after some time (5 seconds maybe?). Please see https://developer.mozilla.org/en-US/docs/Web/API/Notification/close for reference.The text was updated successfully, but these errors were encountered: