This commit is contained in:
Mayel de Borniol 2023-02-28 16:43:45 +13:00
parent 5f32903d22
commit 054e2d9d2b
2 changed files with 6 additions and 6 deletions

View file

@ -449,7 +449,7 @@ ap_boundaries := "extensions/bonfire_federate_activitypub/test/ap_boundaries"
ap_ext := "extensions/*/test/*federat* extensions/*/test/*/*federat* extensions/*/test/*/*/*federat*"
# ap_two := "forks/bonfire_federate_activitypub/test/dance"
test-federation:
test-federation: test-federation-dance-positions
just test-stale {{ ap_lib }}
just test-stale {{ ap_integration }}
just test-stale {{ ap_ext }}
@ -457,13 +457,13 @@ test-federation:
TEST_INSTANCE=yes just test-stale --only test_instance
just test-federation-dance-positions
test-federation-lib *args=ap_lib:
test-federation-lib *args=ap_lib: test-federation-dance-positions
just test-watch $@
test-federation-integration *args=ap_integration:
test-federation-integration *args=ap_integration: test-federation-dance-positions
just test-watch $@
test-federation-ext *args=ap_ext:
test-federation-ext *args=ap_ext: test-federation-dance-positions
just test-watch $@
test-federation-dance *args='': test-federation-dance-positions

View file

@ -38,7 +38,7 @@ 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")
else: IO.inspect("Note: Wallaby UI tests will not run because the chromedriver is missing")
IO.puts("""
@ -46,6 +46,6 @@ Testing shows the presence, not the absence of bugs.
- Edsger W. Dijkstra
""")
# insert fixtures on startup (because running them as part of migrations inserts in primary repo)
# insert fixtures in test instance's repo on startup
if System.get_env("TEST_INSTANCE") == "yes",
do: Bonfire.Common.TestInstanceRepo.apply(&Bonfire.Boundaries.Fixtures.insert/0)