Updates "msw" package to version 0.21.0 (#17012)

This commit is contained in:
Artem Zakharchenko 2020-09-12 07:15:59 +02:00 committed by GitHub
parent d4a8d4fc88
commit 260814cc04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 2 deletions

View file

@ -8,7 +8,7 @@
},
"license": "MIT",
"dependencies": {
"msw": "^0.20.4",
"msw": "^0.21.0",
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"

View file

@ -7,7 +7,7 @@
/* eslint-disable */
/* tslint:disable */
const INTEGRITY_CHECKSUM = 'ca2c3cd7453d8c614e2c19db63ede1a1'
const INTEGRITY_CHECKSUM = 'd1e0e502f550d40a34bee90822e4bf98'
const bypassHeaderName = 'x-msw-bypass'
let clients = {}
@ -27,6 +27,13 @@ self.addEventListener('message', async function (event) {
const allClientIds = allClients.map((client) => client.id)
switch (event.data) {
case 'KEEPALIVE_REQUEST': {
sendToClient(client, {
type: 'KEEPALIVE_RESPONSE',
})
break
}
case 'INTEGRITY_CHECK_REQUEST': {
sendToClient(client, {
type: 'INTEGRITY_CHECK_RESPONSE',