forked from LeenkxTeam/Kmake
8 lines
203 B
JavaScript
8 lines
203 B
JavaScript
'use strict';
|
|
importScripts('/resources/testharness.js', 'helpers.js');
|
|
|
|
const promise = testMessageEvent(self);
|
|
promise
|
|
.then(() => postMessage('OK'))
|
|
.catch(err => postMessage(`BAD: ${err}`));
|