import Config ## Import or set test configs for extensions import_config "activity_pub_test.exs" config :bonfire, Bonfire.Mailer, adapter: Bamboo.TestAdapter config :bonfire_search, disabled: true, disable_indexing: true ## Other general test config config :logger, level: :info # config :logger, level: :notice # Configure your database # db = "bonfire_test#{System.get_env("MIX_TEST_PARTITION")}" # # 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 :bonfire, Bonfire.Common.Repo, pool: Ecto.Adapters.SQL.Sandbox, pool_size: 60, # show_sensitive_data_on_connection_error: true, # database: db, slow_query_ms: 500 # Optionally run a 2nd endpoint for testing federation config :bonfire, Bonfire.Web.FakeRemoteEndpoint, server: true, url: [ host: "localhost", port: 4002 ], http: [ port: 4002 ], secret_key_base: System.get_env("SECRET_KEY_BASE"), live_view: [signing_salt: System.get_env("SIGNING_SALT")], render_errors: [view: Bonfire.UI.Common.ErrorView, accepts: ~w(html json), layout: false] config :tesla, adapter: if(System.get_env("TEST_INSTANCE") == "yes", do: Tesla.Adapter.Hackney, else: Tesla.Mock) config :bonfire, Oban, testing: if(System.get_env("TEST_INSTANCE") == "yes", do: :inline, else: :manual) config :pbkdf2_elixir, :rounds, 1 config :mix_test_interactive, clear: true config :paginator, Paginator.Repo, pool: Ecto.Adapters.SQL.Sandbox, username: System.get_env("POSTGRES_USER", "postgres"), password: System.get_env("POSTGRES_PASSWORD", "postgres"), hostname: System.get_env("POSTGRES_HOST", "localhost")