Using wallaby: including chromedriver in release

For anyone looking for a way to use current wallaby in production and hitting ExUnit.after_suite/1

What worked for me is to include :ex_unit in your extra_applications

  def application do
    [
      mod: {MyCool.Application, []},
      extra_applications: [:logger, :runtime_tools, :ex_unit]
    ]
  end
1 Like