mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-06-18 16:36:27 +10:00
Add initial load scheduling and tests for USB screen and frame codec functionality
This commit is contained in:
committed by
just-stuff-tm
parent
781090243c
commit
f39a22668e
@@ -50,7 +50,18 @@ void main() {
|
||||
test('describeWebUsbPort returns chooser label when no usb ids exist', () {
|
||||
expect(
|
||||
describeWebUsbPort(vendorId: null, productId: null),
|
||||
usbRequestPortLabel,
|
||||
'Choose USB Device',
|
||||
);
|
||||
});
|
||||
|
||||
test('describeWebUsbPort uses caller-provided chooser label', () {
|
||||
expect(
|
||||
describeWebUsbPort(
|
||||
vendorId: null,
|
||||
productId: null,
|
||||
requestPortLabel: 'Select a USB device',
|
||||
),
|
||||
'Select a USB device',
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user