mirror of
https://github.com/zyphlar/doorlock.git
synced 2024-04-03 21:36:03 +00:00
10 lines
121 B
JavaScript
10 lines
121 B
JavaScript
|
const HID = jest.fn()
|
||
|
HID.prototype.read = jest.fn()
|
||
|
|
||
|
const hid = {
|
||
|
devices: jest.fn(),
|
||
|
HID,
|
||
|
}
|
||
|
|
||
|
module.exports = hid
|