mirror of
https://github.com/cypress-io/cypress.git
synced 2026-05-20 07:09:46 -05:00
14 lines
229 B
HTML
14 lines
229 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<script>
|
|
window.worker = new Worker('/web-worker.js')
|
|
window.sharedWorker = new SharedWorker('/shared-worker.js')
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<h1>hi</h1>
|
|
</body>
|
|
</html>
|