summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/wasm/serialization/module/resources/incrementer-worker-with-channel.js
blob: 0323b3e52e75e894ae40ffc68e904ffc81ded024 (plain)
1
2
3
4
5
6
7
8
"use strict";
importScripts("/resources/testharness.js");
importScripts("./test-incrementer.js");

self.onmessage = ({ data }) => {
  // data will be a MessagePort
  setupDestinationIncrementer(data, data);
};