This commit is contained in:
Mayel de Borniol 2022-08-13 20:51:53 +12:00
parent 3dd5740f55
commit 558aba9491
3 changed files with 9 additions and 3 deletions

View file

@ -109,7 +109,7 @@ defmodule Bonfire.MixProject do
],
"bonfire.deps.update": ["deps.update " <> deps_to_update()],
"bonfire.deps.clean": ["deps.clean " <> deps_to_clean(:localise) <> " --build"],
"bonfire.deps.clean.data": ["deps.clean " <> (deps_to_clean(:data) |> IO.inspect) <> " --build"],
"bonfire.deps.clean.data": ["deps.clean " <> deps_to_clean(:data) <> " --build"],
"bonfire.deps.clean.api": ["deps.clean " <> deps_to_clean(:api) <> " --build"],
"bonfire.deps.recompile": ["deps.compile " <> deps_to_update() <> " --force"],
"bonfire.deps": ["bonfire.deps.update", "bonfire.deps.clean.data"],

View file

@ -40,12 +40,12 @@
"bonfire_search": {:git, "https://github.com/bonfire-networks/bonfire_search", "2e3854097a0ae6c898a151c0fd27b721cd3ed3ec", [branch: "main"]},
"bonfire_social": {:git, "https://github.com/bonfire-networks/bonfire_social", "b79de5f0dcb159681d36c7093830f82a4e4220a8", [branch: "main"]},
"bonfire_tag": {:git, "https://github.com/bonfire-networks/bonfire_tag", "ae1dfc06c89abf08639dd07d8e595648df27e8c4", [branch: "main"]},
"bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "34528a20bcaebbec65fe224056b6cbd1503c9904", [branch: "main"]},
"bonfire_ui_common": {:git, "https://github.com/bonfire-networks/bonfire_ui_common", "799e490bf363bd450134702cb1c42945314f7b06", [branch: "main"]},
"bonfire_ui_coordination": {:git, "https://github.com/bonfire-networks/bonfire_ui_coordination", "cfa82a5f991e40ad02634b4fd2b6b7ff73315d39", [branch: "main"]},
"bonfire_ui_kanban": {:git, "https://github.com/bonfire-networks/bonfire_ui_kanban", "fc00ee7e8d5720527131dbf93644e43d960144eb", [branch: "main"]},
"bonfire_ui_me": {:git, "https://github.com/bonfire-networks/bonfire_ui_me", "f9244db5601f31c55e87547b6a6df2644a8a1c5f", [branch: "main"]},
"bonfire_ui_reflow": {:git, "https://github.com/bonfire-networks/bonfire_ui_reflow", "befd9ccb3b28b1e46e4a485deb493a041fde181b", [branch: "main"]},
"bonfire_ui_social": {:git, "https://github.com/bonfire-networks/bonfire_ui_social", "affa785d189adde3f9c2289fd73efd5f786ba2a3", [branch: "main"]},
"bonfire_ui_social": {:git, "https://github.com/bonfire-networks/bonfire_ui_social", "f0c06b52943a37fc84beb157e8e32ef8abb1a217", [branch: "main"]},
"bonfire_ui_valueflows": {:git, "https://github.com/bonfire-networks/bonfire_ui_valueflows", "f6a9308b45117c1be17b334bdff1f163564e4d8e", [branch: "main"]},
"bonfire_upcycle": {:git, "https://gitlab.com/bonfire-networks/bonfire_upcycle", "bb3fb7f2ad8664290913cf0d76f877b7aac2f269", [branch: "master"]},
"bonfire_valueflows": {:git, "https://github.com/bonfire-networks/bonfire_valueflows", "cb9df88c330e362c7378eda863c395b2def9f8aa", [branch: "main"]},

View file

@ -28,3 +28,9 @@ ExUnit.start(
Application.put_env(:wallaby, :base_url, Bonfire.Web.Endpoint.url())
chromedriver_path = Bonfire.Common.Config.get([:wallaby, :chromedriver, :path])
if chromedriver_path && File.exists?(chromedriver_path), do: {:ok, _} = Application.ensure_all_started(:wallaby), else: IO.inspect("Note: Wallaby will not run because the chromedriver is missing")
IO.puts("""
Testing shows the presence, not the absence of bugs.
- Edsger W. Dijkstra
""")