Skip to content

Instantly share code, notes, and snippets.

@PJUllrich
Created January 14, 2020 22:08
Show Gist options
  • Save PJUllrich/753713f77f177cab08daaec1464767fe to your computer and use it in GitHub Desktop.
Save PJUllrich/753713f77f177cab08daaec1464767fe to your computer and use it in GitHub Desktop.
defmodule Support.FeatureCase do
@moduledoc false
use ExUnit.CaseTemplate
using do
quote do
@moduletag :feature
use Wallaby.DSL
import Wallaby.Browser, except: [text: 1]
import Wallaby.Query
alias Web.Router.Helpers, as: Routes
import Support.Factory
alias MyApp.Repo
import Ecto
import Ecto.Changeset
import Ecto.Query
def find_and_click(session, query) do
session |> find(query)
session |> click(query)
end
end
end
setup _tags do
# Reset ExMachina Sequence Iterators
ExMachina.Sequence.reset()
# Set the Database Connection to a Sandbox shared between Processes
:ok = Ecto.Adapters.SQL.Sandbox.checkout(Repo)
Ecto.Adapters.SQL.Sandbox.mode(Repo, {:shared, self()})
# Start Wallaby for UI Tests
metadata = Phoenix.Ecto.SQL.Sandbox.metadata_for(Repo, self())
{:ok, session} = Wallaby.start_session(metadata: metadata)
{:ok, session: session}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment