mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-04-07 09:06:46 +00:00
13 lines
403 B
Elixir
13 lines
403 B
Elixir
# Delete screenshots from previous acceptance test executions
|
|
Path.join(File.cwd!(), "screenshots") |> File.rm_rf!()
|
|
|
|
Bureaucrat.start(
|
|
writer: Web.Documentation.Generator,
|
|
default_path: "../../www/docs/reference/rest-api"
|
|
)
|
|
|
|
Finch.start_link(name: TestPool)
|
|
|
|
Ecto.Adapters.SQL.Sandbox.mode(Domain.Repo, :manual)
|
|
ExUnit.start(formatters: [ExUnit.CLIFormatter, JUnitFormatter, Bureaucrat.Formatter])
|