---
title: Testing
description: Learn how to create integration tests for your app when using Expo Router.
---
import { APIBox } from '~/components/plugins/APIBox';
Expo Router relies on your file system, which can present challenges when setting up mocks for integration tests. Expo Router's submodule, `expo-router/testing-library`, is a set of testing utilities built on top of the popular [`@testing-library/react-native`](https://callstack.github.io/react-native-testing-library/) and allows you to quickly create in-memory Expo Router apps that are pre-configured for testing.
## Configuration
Before you proceed, ensure you've set up `jest-expo` according to the [Unit Testing](/develop/testing) and [`@testing-library/react-native`](https://callstack.github.io/react-native-testing-library/docs/getting-started).
## renderRouter()
`renderRouter` extends the functionality of [`render`](https://callstack.github.io/react-native-testing-library/docs/api#render) to simplify testing with Expo Router. It returns the the same query object as [`render`](https://callstack.github.io/react-native-testing-library/docs/api#render), and is compatible with [`screen`](https://callstack.github.io/react-native-testing-library/docs/api#screen), allowing you to use the standard [query API](https://callstack.github.io/react-native-testing-library/docs/api-queries) to locate components.
`renderRouter` accepts the same [options](https://callstack.github.io/react-native-testing-library/docs/api#render-options) as `render` and introduces an additional option `initialRoute`, which sets an initial route for simulating deep-linking.
`renderRouter(mock: Record, options: RenderOptions)`
`renderRouter` can provide inline-mocking of a file system by passing an object to this function as the first parameter. The keys of the object are the mock filesystem paths. **Do not use leading relative (`./`) or absolute (`/`) notation when defining these paths and exclude file extension.**
```tsx app.test.tsx
import { renderRouter, screen } from 'expo-router/testing-library';
it('my-test', async () => {
const MockComponent = jest.fn(() => );
renderRouter(
{
index: MockComponent,
'folder/a': MockComponent,
'(group)/b': MockComponent,
},
{
initialRoute: '/folder/a',
}
);
expect(screen).toHavePathname('/folder/a');
});
```
`renderRouter(fixturePath: string, options: RenderOptions)`
`renderRouter` can accept a directory path to mock an existing fixture. Ensure that the provided path is relative to the current test file.
```tsx app.test.js
it('my-test', async () => {
const MockComponent = jest.fn(() => );
renderRouter('./my-test-fixture');
});
```
`renderRouter({ appDir: string, overrides: Record}, options: RenderOptions)`
For more intricate testing scenarios, `renderRouter` can leverage both directory path and inline-mocking methods simultaneously. The `appDir` parameter takes a string representing a pathname to a folder. The overrides parameter is an inline mock that can be used to override specific paths within the `appDir`. This combination allows for fine-tuned control over the mock environment.
```tsx app.test.js
it('my-test', async () => {
const MockAuthLayout = jest.fn(() => );
renderRouter({
appDir: './my-test-fixture',
overrides: {
'folder/(auth)/_layout': MockAuthLayout,
},
});
});
```
## Jest matchers
The following matches have been added to `expect` and can be used to asset values on `screen`.
Assert the current pathname against a given string. The matcher uses the value of the [`usePathname`](/router/reference/hooks/#usepathname) hook on the current `screen`.
```tsx app.test.ts
expect(screen).toHavePathname('/my-router');
```
Assert the current segments against an array of strings. The matcher uses the value of the [`useSegments`](/router/reference/hooks/#usesegments) hook on the current `screen`.
```tsx app.test.ts
expect(screen).toHaveSegments(['[id]']);
```
Assert the current local search parameters against an object. The matcher uses the value of the [`useLocalSearchParams`](/router/reference/hooks/#uselocalsearchparams) hook on the current `screen`.
```tsx app.test.ts
expect(screen).useLocalSearchParams({ first: 'abc' });
```
Assert the current screen's pathname that matches a value. Compares using the value of [`useGlobalSearchParams`](/router/reference/hooks/#useglobalsearchparams) hook.
Assert the current global search parameters against an object. The matcher uses the value of the [`useGlobalSearchParams`](/router/reference/hooks/#useglobalsearchparams) hook on the current `screen`.
```tsx app.test.ts
expect(screen).useGlobalSearchParams({ first: 'abc' });
```