mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
19 lines
288 B
JavaScript
19 lines
288 B
JavaScript
|
const test = require('tap').test;
|
||
|
// const JSONRPC = require('../../src/util/jsonrpc');
|
||
|
|
||
|
test('constructor', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('sendRemoteRequest', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('sendRemoteNotification', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('didReceiveCall', t => {
|
||
|
t.end();
|
||
|
});
|