msw 0.33.1 → 0.35.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,13 +2,13 @@
2
2
  /* tslint:disable */
3
3
 
4
4
  /**
5
- * Mock Service Worker (0.33.1).
5
+ * Mock Service Worker (0.35.0).
6
6
  * @see https://github.com/mswjs/msw
7
7
  * - Please do NOT modify this file.
8
8
  * - Please do NOT serve this file on production.
9
9
  */
10
10
 
11
- const INTEGRITY_CHECKSUM = 'a615cd395ea10f948a628bce3857a385'
11
+ const INTEGRITY_CHECKSUM = 'f0a916b13c8acc2b526a03a6d26df85f'
12
12
  const bypassHeaderName = 'x-msw-bypass'
13
13
  const activeClientIds = new Set()
14
14
 
@@ -221,13 +221,11 @@ async function getResponse(event, client, requestId) {
221
221
 
222
222
  console.error(
223
223
  `\
224
- [MSW] Request handler function for "%s %s" has thrown the following exception:
224
+ [MSW] Uncaught exception in the request handler for "%s %s":
225
225
 
226
- ${parsedBody.errorType}: ${parsedBody.message}
227
- (see more detailed error stack trace in the mocked response body)
226
+ ${parsedBody.location}
228
227
 
229
- This exception has been gracefully handled as a 500 response, however, it's strongly recommended to resolve this error.
230
- If you wish to mock an error response, please refer to this guide: https://mswjs.io/docs/recipes/mocking-error-responses\
228
+ This exception has been gracefully handled as a 500 response, however, it's strongly recommended to resolve this error, as it indicates a mistake in your code. If you wish to mock an error response, please see this guide: https://mswjs.io/docs/recipes/mocking-error-responses\
231
229
  `,
232
230
  request.method,
233
231
  request.url,
@@ -271,11 +269,22 @@ self.addEventListener('fetch', function (event) {
271
269
 
272
270
  return event.respondWith(
273
271
  handleRequest(event, requestId).catch((error) => {
272
+ if (error.name === 'NetworkError') {
273
+ console.warn(
274
+ '[MSW] Successfully emulated a network error for the "%s %s" request.',
275
+ request.method,
276
+ request.url,
277
+ )
278
+ return
279
+ }
280
+
281
+ // At this point, any exception indicates an issue with the original request/response.
274
282
  console.error(
275
- '[MSW] Failed to mock a "%s" request to "%s": %s',
283
+ `\
284
+ [MSW] Caught an exception from the "%s %s" request (%s). This is probably not a problem with Mock Service Worker. There is likely an additional logging output above.`,
276
285
  request.method,
277
286
  request.url,
278
- error,
287
+ `${error.name}: ${error.message}`,
279
288
  )
280
289
  }),
281
290
  )
@@ -1,4 +1,4 @@
1
- import { R as RequestHandler, h as cleanUrl, i as getSearchParams, d as devUtils, m as matchRequestUrl, g as getPublicUrlFromRequest, j as prepareRequest, k as prepareResponse, n as getTimestamp, o as getStatusCodeColor } from './RequestHandler-deps.js';
1
+ import { R as RequestHandler, h as cleanUrl, i as getSearchParams, d as devUtils, m as matchRequestUrl, g as getPublicUrlFromRequest, j as prepareRequest, k as prepareResponse, n as getStatusCodeColor, o as getTimestamp } from './RequestHandler-deps.js';
2
2
  import { b as set, s as status, d as cookie, g as json, e as delay, f as fetch } from './fetch-deps.js';
3
3
  import { b as body, t as text, x as xml } from './xml-deps.js';
4
4
 
@@ -87,7 +87,8 @@ ${queryParams
87
87
  const publicUrl = getPublicUrlFromRequest(request);
88
88
  const loggedRequest = prepareRequest(request);
89
89
  const loggedResponse = prepareResponse(response);
90
- console.groupCollapsed(devUtils.formatMessage('%s %s %s (%c%s%c)'), getTimestamp(), request.method, publicUrl, `color:${getStatusCodeColor(response.status)} %s`, response.status, response.statusText, 'color:inherit');
90
+ const statusColor = getStatusCodeColor(response.status);
91
+ console.groupCollapsed(devUtils.formatMessage('%s %s %s (%c%s%c)'), getTimestamp(), request.method, publicUrl, `color:${statusColor}`, `${response.status} ${response.statusText}`, 'color:inherit');
91
92
  console.log('Request', loggedRequest);
92
93
  console.log('Handler:', {
93
94
  mask: this.info.path,