1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 23:17:46 +00:00

Tests: Add test for loading module scripts in Workers

This commit is contained in:
Andrew Kaster 2024-03-05 10:16:07 -07:00 committed by Andreas Kling
parent f67bc591a0
commit f9f98016e2
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,3 @@
self.onmessage = ({ data }) => {
self.postMessage(`Worker responding to: ${data}`);
};