mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-26 07:52:50 -05:00
23 lines
322 B
JavaScript
23 lines
322 B
JavaScript
|
const test = require('tap').test;
|
||
|
// const ScratchBT = require('../../src/io/scratchBT');
|
||
|
|
||
|
test('constructor', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('requestDevice', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('connectDevice', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('sendMessage', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('didReceiveCall', t => {
|
||
|
t.end();
|
||
|
});
|