Search⌘ K
AI Features

Introduction to Sandboxes

Explore how to enhance your Elixir test suite performance by using sandboxes. Understand how sandboxed testing isolates database states for each test and enables concurrent execution to significantly reduce test times.

We'll cover the following...

This chapter explains how to turbo-charge our test suite with sandboxes.

Sandboxes allow us to run our database tests concurrently while ...