View Source Heyya.LiveTestSession (heyya v0.8.0)

This module is a struct to hold the state of a session of live view testing.

It wraps up Plug connection, the current view, and the latest rendered html

Summary

Types

@type t() :: %Heyya.LiveTestSession{
  conn: Plug.Conn.t(),
  html: any() | nil,
  view: any() | nil
}