Tests
December 19, 2025 ยท View on GitHub
Running Tests
First you must configure your development environment per ../CONTRIBUTING.md
There are two test suites associated with Mapbox GL JS
npm testruns quick unit testsnpm run test-suiteruns slower integration tests
To run unit tests you need install required Playwright browsers before with the command:
npx playwright install chromium
To run individual tests:
- Unit tests:
npm run test-unit -- path/to/file.test.js- e.g.
npm run test-unit -- test/unit/ui/handler/scroll_zoom.test.js
- e.g.
- Render tests:
npm run test-render -- -t "render-test-name"where therender-test-namecan be any substring in thetest/integration/render-tests/subdirectories- e.g.
npm run test-render -- -t "background-color/default"ornpm run test-render -- -t "line"
- e.g.
See test/integration/README.md#running-specific-tests and Vitest documentation.
Integration Tests
See test/integration/README.md.
Writing Unit Tests
- You must not share variables between test cases. All test fixtures must be wrapped in
createfunctions. This ensures each test is run in an isolated environment. - You should not mock any internal domain objects. Internal domain objects include
Style,Map,Transform, andDispatcher. If this is difficult because of some interface, refactor that interface. This ensures that tests accurately exercise the code paths used in production. - You should test one return value or side effect per test case. Feel free to pull shared logic into a function. This ensures that tests are easy to understand and modify.
- You should only test the return values and global side effects of methods. You should not not test internal behavior, such as that another method is called with particular arguments. This ensures that method implementations may change without causing test failures.
- You must not make network requests in test cases. This rule holds in cases when result isn't used or is expected to fail. You may use
mockFetchfromtest/util/network.jsmodule to mock requests if you need though. This ensures that tests are reliable, able to be run in an isolated environment, and performant - You should use clear input space partitioning schemes. Look for edge cases! This ensures that tests suites are comprehensive and easy to understand.
If you want to debug your unit tests you can open UI for that with the following command:
npm run test-unit -- --no-browser.headless
Spies, Stubs, and Mocks
The test object is augmented with methods from Sinon.js for spies, stubs, and mocks. For example, to use Sinon's spy API, call t.spy(...) within a test.
The test framework is set up such that spies, stubs, and mocks on global objects are restored at the end of each test.
Debugging
If you need to debug vitest browser tests, you can set the DEBUG environment variable to enable debug output from vitest.
DEBUG=vitest:browser:playwright
When running tests in CI, you can check for the runner.debug variable to enable debug output conditionally. For example, in a GitHub Actions workflow, you can use the following snippet for running test-unit with debug output:
- run: xvfb-run -a npm run test-unit
env:
DEBUG: ${{ runner.debug && 'vitest:browser:playwright' }}
When debugging browser launches, setting the DEBUG environment variable to pw:browser is helpful while debugging Error: Failed to launch browser errors.
DEBUG=pw:browser