mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
7 lines
No EOL
238 B
JavaScript
7 lines
No EOL
238 B
JavaScript
// This module enables requests interception in React Native
|
|
// using the same request handlers as in tests.
|
|
import { setupServer } from 'msw/native'
|
|
|
|
import { handlers } from './handlers'
|
|
|
|
export const native = setupServer( ...handlers ) |