참고소스 수정본
This commit is contained in:
16
참고/playwright-main/tests/assets/worker/worker.js
Normal file
16
참고/playwright-main/tests/assets/worker/worker.js
Normal file
@@ -0,0 +1,16 @@
|
||||
console.log('hello from the worker');
|
||||
|
||||
function workerFunction() {
|
||||
return 'worker function result';
|
||||
}
|
||||
|
||||
self.addEventListener('message', event => {
|
||||
console.log('got this data: ' + event.data);
|
||||
});
|
||||
|
||||
(async function() {
|
||||
while (true) {
|
||||
self.postMessage(workerFunction.toString());
|
||||
await new Promise(x => setTimeout(x, 100));
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user