chore: move test files to testdata directory (#11601)

This commit is contained in:
David Sherret 2021-08-11 10:20:47 -04:00 committed by GitHub
parent a0285e2eb8
commit 15a763152f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
1089 changed files with 1150 additions and 1160 deletions

View file

@ -0,0 +1,9 @@
self.postMessage("ready");
globalThis.addEventListener("message", (e) => {
const bytes1 = new Uint8Array(e.data[0]);
const bytes2 = new Uint8Array(e.data[1]);
bytes1[0] = 1;
bytes2[0] = 2;
self.postMessage("done");
});