mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-25 23:42:23 -05:00
22 lines
602 B
JavaScript
22 lines
602 B
JavaScript
|
const test = require('tap').test;
|
||
|
const DeviceManager = require('../../src/io/deviceManager');
|
||
|
|
||
|
test('spec', t => {
|
||
|
const deviceManager = new DeviceManager();
|
||
|
|
||
|
t.type(DeviceManager, 'function');
|
||
|
t.type(deviceManager, 'object');
|
||
|
t.type(deviceManager.list, 'function');
|
||
|
t.type(deviceManager.open, 'function');
|
||
|
t.type(deviceManager.searchAndConnect, 'function');
|
||
|
t.type(deviceManager.isConnected, 'boolean');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('default connected', t => {
|
||
|
const deviceManager = new DeviceManager();
|
||
|
|
||
|
t.strictEqual(deviceManager.isConnected, true);
|
||
|
t.end();
|
||
|
});
|