penguinmod-vm-prain / test /fixtures /dispatch-test-worker.js
soiz1's picture
Upload folder using huggingface_hub
76cc654 verified
raw
history blame contribute delete
430 Bytes
const dispatch = require('../../src/dispatch/worker-dispatch');
const DispatchTestService = require('./dispatch-test-service');
const log = require('../../src/util/log');
dispatch.setService('RemoteDispatchTest', new DispatchTestService());
dispatch.waitForConnection.then(() => {
dispatch.call('test', 'onWorkerReady').catch(e => {
log(`Test worker failed to call onWorkerReady: ${JSON.stringify(e)}`);
});
});