-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtest.exs
More file actions
37 lines (31 loc) · 1.19 KB
/
test.exs
File metadata and controls
37 lines (31 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import Config
# Configure your database
#
# The MIX_TEST_PARTITION environment variable can be used
# to provide built-in test partitioning in CI environment.
# Run `mix help test` for more information.
config :phoenix_sync_example, PhoenixSyncExample.Repo,
username: "postgres",
password: "password",
hostname: "localhost",
database: "phoenix_sync_example_test#{System.get_env("MIX_TEST_PARTITION")}",
port: 54321,
pool: Ecto.Adapters.SQL.Sandbox,
pool_size: System.schedulers_online() * 2
# We don't run a server during test. If one is required,
# you can enable the server option below.
config :phoenix_sync_example, PhoenixSyncExampleWeb.Endpoint,
http: [ip: {127, 0, 0, 1}, port: 4002],
secret_key_base: "JxgUv3Dd0aEmBGFLgfyPpQPTidmD3BaW9NYtWDCnk0Yo3EaPDQgUNyLOXkm3+//h",
server: false
# Print only warnings and errors during test
config :logger, level: :warning
# Initialize plugs at runtime for faster test compilation
config :phoenix, :plug_init_mode, :runtime
# Enable helpful, but potentially expensive runtime checks
config :phoenix_live_view,
enable_expensive_runtime_checks: true
config :phoenix_sync,
env: config_env(),
mode: :embedded,
repo: PhoenixSyncExample.Repo