mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 23:42:23 -05:00
27 lines
356 B
JavaScript
27 lines
356 B
JavaScript
|
const test = require('tap').test;
|
||
|
// const ScratchBLE = require('../../src/io/scratchBLE');
|
||
|
|
||
|
test('constructor', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('waitForSocket', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('requestDevice', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('didReceiveCall', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('read', t => {
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('write', t => {
|
||
|
t.end();
|
||
|
});
|