From 5f93504fdc9a5aaa7d11c1769fa5effc3c8d7919 Mon Sep 17 00:00:00 2001 From: Steffen Beyer Date: Mon, 20 Jan 2025 20:42:52 +0100 Subject: [PATCH] docs: enable Ecto sandbox for tests (#120) --- documentation/tutorials/getting-started-with-ash-sqlite.md | 1 + 1 file changed, 1 insertion(+) diff --git a/documentation/tutorials/getting-started-with-ash-sqlite.md b/documentation/tutorials/getting-started-with-ash-sqlite.md index f9d3de7..445f3bd 100644 --- a/documentation/tutorials/getting-started-with-ash-sqlite.md +++ b/documentation/tutorials/getting-started-with-ash-sqlite.md @@ -111,6 +111,7 @@ import Config # Run `mix help test` for more information. config :helpdesk, Helpdesk.Repo, database: Path.join(__DIR__, "../path/to/your#{System.get_env("MIX_TEST_PARTITION")}.db"), + pool: Ecto.Adapters.SQL.Sandbox, pool_size: 10 ```