mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
96c74867b5
When no Device Manager instance is present this test takes a long time and can cause timeouts. We'll need to fake the HTTP requests if we want to do this sort of test reliably.
21 lines
602 B
JavaScript
21 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();
|
|
});
|