Add eventually/1 call to flaky test (#3054)

This commit is contained in:
Vini Brasil 2023-06-19 10:32:34 +01:00 committed by GitHub
parent 02783885c7
commit f0bdf872b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -158,7 +158,10 @@ defmodule Plausible.Workers.ImportGoogleAnalyticsTest do
api_stub
)
assert Plausible.Stats.Clickhouse.imported_pageview_count(site) == 0
assert eventually(fn ->
count = Plausible.Stats.Clickhouse.imported_pageview_count(site)
{count == 0, count}
end)
end
test "sends email to owner after failed import" do