mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-20 23:28:42 -05:00
80cc83d0aa
Co-authored-by: Cacie Prins <cacieprins@users.noreply.github.com>
11 lines
167 B
JavaScript
11 lines
167 B
JavaScript
onmessage = (e) => {
|
|
// eslint-disable-next-line no-undef
|
|
importScripts('/ww.js')
|
|
|
|
if (e.data.foo === 'bar') {
|
|
postMessage({
|
|
foo: 'bar2',
|
|
})
|
|
}
|
|
}
|