release-2021-10-28 packages/test-utils/src/testUtils/msw/index.ts:18

Signed-off-by: Colton Padden <colton.padden@fastmail.com>
This commit is contained in:
Colton Padden
2021-12-14 15:05:38 -05:00
parent eba9d2415f
commit 24d466c373
@@ -14,20 +14,6 @@
* limitations under the License.
*/
/**
* @deprecated use {@link setupRequestMockHandlers} instead which can be called directly with the worker.
* @public
*/
export const msw = {
setupDefaultHandlers: (worker: {
listen: (t: any) => void;
close: () => void;
resetHandlers: () => void;
}) => {
setupRequestMockHandlers(worker);
},
};
/**
* Sets up handlers for request mocking
* @public