Hacker News new | ask | show | jobs
by msmithstubbs 1098 days ago
Yes, LiveViewTest (a module included in Phoenix LiveView) supports testing connected mounts.

You can write a test that just fetches the disconnected state, and then upgrades it to a connected state (see https://hexdocs.pm/phoenix_live_view/Phoenix.LiveViewTest.ht...).

If you want to test the result of a button click there's support for that, too, with things like `render_click`.

1 comments

I mean for async assigns specifically. I did something like this in the past and had some troubles with render_click returning the html before the async update completes.