Created
January 14, 2020 22:08
-
-
Save PJUllrich/753713f77f177cab08daaec1464767fe to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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