content/guides/reactjs/run-tests.md
Complete all the previous sections of this guide, starting with Containerize React.js application.
Testing is a critical part of the development process. In this section, you'll learn how to:
You’ll use Vitest — a blazing fast test runner designed for Vite — along with Testing Library for assertions.
docker-reactjs-sample application includes a sample test file at location:
$ src/App.test.tsx
This file uses Vitest and React Testing Library to verify the behavior of App component.
If you haven’t already added the necessary testing tools, install them by running:
$ npm install --save-dev vitest @testing-library/react @testing-library/jest-dom jsdom
Then, update the scripts section of your package.json file to include the following:
"scripts": {
"test": "vitest run"
}
Update vitest.config.ts file in your project root with the following configuration:
/// <reference types="vitest" />
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
base: "/",
plugins: [react()],
server: {
host: true,
port: 5173,
strictPort: true,
},
test: {
environment: "jsdom",
setupFiles: "./src/setupTests.ts",
globals: true,
},
});
[!NOTE] The
testoptions invitest.config.tsare essential for reliable testing inside Docker:
environment: "jsdom"simulates a browser-like environment for rendering and DOM interactions.setupFiles: "./src/setupTests.ts"loads global configuration or mocks before each test file (optional but recommended).globals: trueenables global test functions likedescribe,it, andexpectwithout importing them.For more details, see the official Vitest configuration docs.
Add a new service named react-test to your compose.yaml file. This service allows you to run your test suite in an isolated containerized environment.
services:
react-dev:
build:
context: .
dockerfile: Dockerfile.dev
ports:
- "5173:5173"
develop:
watch:
- action: sync
path: .
target: /app
react-prod:
build:
context: .
dockerfile: Dockerfile
image: docker-reactjs-sample
ports:
- "8080:8080"
react-test:
build:
context: .
dockerfile: Dockerfile.dev
command: ["npm", "run", "test"]
The react-test service reuses the same Dockerfile.dev used for development and overrides the default command to run tests with npm run test. This setup ensures a consistent test environment that matches your local development configuration.
After completing the previous steps, your project directory should contain the following files:
├── docker-reactjs-sample/
│ ├── Dockerfile
│ ├── Dockerfile.dev
│ ├── .dockerignore
│ ├── compose.yaml
│ ├── nginx.conf
│ └── README.Docker.md
To execute your test suite inside the container, run the following command from your project root:
$ docker compose run --rm react-test
This command will:
react-test service defined in your compose.yaml file.npm run test script using the same environment as development.docker compose run --rm command.[!NOTE] For more information about Compose commands, see the Compose CLI reference.
In this section, you learned how to run unit tests for your React.js application inside a Docker container using Vitest and Docker Compose.
What you accomplished:
react-test service in compose.yaml to isolate test execution.Dockerfile.dev to ensure consistency between dev and test environments.docker compose run --rm react-test.Explore official references and best practices to sharpen your Docker testing workflow:
compose.yaml.docker compose run CLI reference – Run one-off commands in a service container.Next, you’ll learn how to set up a CI/CD pipeline using GitHub Actions to automatically build and test your React.js application in a containerized environment. This ensures your code is validated on every push or pull request, maintaining consistency and reliability across your development workflow.