mirror of
https://github.com/electron/electron.git
synced 2026-01-11 00:18:02 -05:00
Add spec for interaction event with escape item
This commit is contained in:
@@ -39,13 +39,14 @@ class TouchBar extends EventEmitter {
|
||||
items = []
|
||||
}
|
||||
|
||||
this.changeListener = (item) => {
|
||||
this.emit('change', item.id, item.type)
|
||||
}
|
||||
|
||||
this.windowListeners = {}
|
||||
this.items = {}
|
||||
this.ordereredItems = []
|
||||
this.escapeItem = escapeItem
|
||||
this.changeListener = (item) => {
|
||||
this.emit('change', item.id, item.type)
|
||||
}
|
||||
|
||||
const registerItem = (item) => {
|
||||
this.items[item.id] = item
|
||||
|
||||
@@ -90,5 +90,17 @@ describe('TouchBar module', function () {
|
||||
window.setTouchBar(touchBar)
|
||||
window.emit('-touch-bar-interaction', {}, button.id)
|
||||
})
|
||||
|
||||
it('calls the callback on the escape item when a window interaction event fires', function (done) {
|
||||
const button = new TouchBarButton({
|
||||
label: 'bar',
|
||||
click: () => {
|
||||
done()
|
||||
}
|
||||
})
|
||||
const touchBar = new TouchBar({escapeItem: button})
|
||||
window.setTouchBar(touchBar)
|
||||
window.emit('-touch-bar-interaction', {}, button.id)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user