2022-04-22 15:21:25 +00:00
|
|
|
import Config
|
2021-06-22 01:55:16 +00:00
|
|
|
|
|
|
|
config :wabanex, Wabanex.Repo,
|
|
|
|
database: "wabanex_test#{System.get_env("MIX_TEST_PARTITION")}",
|
|
|
|
pool: Ecto.Adapters.SQL.Sandbox
|
|
|
|
|
|
|
|
config :wabanex, WabanexWeb.Endpoint,
|
|
|
|
http: [port: 4002],
|
|
|
|
server: false
|
|
|
|
|
2023-11-11 20:35:45 +00:00
|
|
|
config :logger, level: :warning
|
2021-07-06 01:09:03 +00:00
|
|
|
|
|
|
|
config :junit_formatter,
|
|
|
|
report_file: "test_report.xml",
|
|
|
|
report_dir: "report/test",
|
|
|
|
automatic_create_dir?: true,
|
|
|
|
include_filename?: true,
|
|
|
|
include_file_line?: true
|