mirror of
https://github.com/plausible/analytics.git
synced 2024-12-23 09:33:19 +03:00
51cad4c0ec
* move set_allowed_event_props into context module * extract parse_csv fn * add custom_props.csv to CSV export (under FF) * add test for custom prop export with a prop filter * add test for goal filtered scenario * mix format * fix flaky test * extract breakdown_custom_prop_values function * Revert "fix flaky test" This reverts commit256b9bb2e7
. The flaky test was already fixed in86557b1878
* make set_allowed_event_props a bang function * test that all files are included in the CSV export
8 lines
320 B
Elixir
8 lines
320 B
Elixir
{:ok, _} = Application.ensure_all_started(:ex_machina)
|
|
Mox.defmock(Plausible.HTTPClient.Mock, for: Plausible.HTTPClient.Interface)
|
|
Application.ensure_all_started(:double)
|
|
FunWithFlags.enable(:funnels)
|
|
FunWithFlags.enable(:props)
|
|
Ecto.Adapters.SQL.Sandbox.mode(Plausible.Repo, :manual)
|
|
ExUnit.configure(exclude: [:slow])
|