Skip to content
Snippets Groups Projects
Commit c43c8259 authored by Sulaiman Javed's avatar Sulaiman Javed
Browse files

ExUnit Bug

parent fc799719
No related branches found
No related tags found
No related merge requests found
......@@ -37,5 +37,5 @@ config :phoenix_live_view,
enable_expensive_runtime_checks: true
# Hound Configuration
config :hound, driver: "chrome_driver", port: 58968 # update the port according to your local chrome_drive message
config :hound, driver: "chrome_driver", port: 62493 # update the port according to your local chrome_drive message
config :proptracker, sql_sandbox: true
defmodule ProptrackerWeb.ViewOwnerProfileContext do
use WhiteBread.Context
use Hound.Helpers
use ExUnit.Case, async: true
alias Proptracker.Repo
alias Proptracker.Accounts.{User, Advertisement}
......
defmodule ProptrackerWeb.InterestsContext do
use WhiteBread.Context
use ExUnit.Case, async: true
alias Proptracker.Repo
alias Proptracker.Accounts.{User, Advertisement}
import Phoenix.ConnTest, only: [build_conn: 0, post: 3]
......
defmodule ProptrackerWeb.Features.Contexts.SoldRent do
use WhiteBread.Context
use ExUnit.Case, async: true
import Plug.Conn
import Phoenix.ConnTest
......
defmodule ProptrackerWeb.ContactButtonTest do
use WhiteBread.Context
use ExUnit.Case, async: true
use ProptrackerWeb.ConnCase
alias Proptracker.Accounts.{User, Advertisement}
......
defmodule ProptrackerWeb.ContactButtonContext do
use WhiteBread.Context
end
......@@ -20,7 +20,7 @@ defmodule Proptracker.MixProject do
def application do
[
mod: {Proptracker.Application, []},
extra_applications: [:logger, :runtime_tools]
extra_applications: [:logger, :runtime_tools, :ex_unit]
]
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment