Skip to content

Commit

Permalink
Merge branch 'canary' into patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] committed Sep 12, 2020
2 parents 93d06c8 + 260814c commit 7dc7321
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/with-msw/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
9 changes: 8 additions & 1 deletion examples/with-msw/public/mockServiceWorker.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/* eslint-disable */
/* tslint:disable */

const INTEGRITY_CHECKSUM = 'ca2c3cd7453d8c614e2c19db63ede1a1'
const INTEGRITY_CHECKSUM = 'd1e0e502f550d40a34bee90822e4bf98'
const bypassHeaderName = 'x-msw-bypass'

let clients = {}
Expand All @@ -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',
Expand Down

0 comments on commit 7dc7321

Please sign in to comment.