const {closeWindow} = require('./window-helpers')
const {TouchBarButton, TouchBarColorPicker, TouchBarGroup} = TouchBar
-const {TouchBarLabel, TouchBarPopover, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer} = TouchBar
+const {TouchBarLabel, TouchBarPopover, TouchBarScrubber, TouchBarSegmentedControl, TouchBarSlider, TouchBarSpacer} = TouchBar
describe('TouchBar module', function () {
it('throws an error when created without an items array', function () {
segments: [{label: 'baz', enabled: false}],
selectedIndex: 5
}),
- new TouchBarSegmentedControl({segments: []})
+ new TouchBarSegmentedControl({segments: []}),
+ new TouchBarScrubber({
+ items: [{label: 'foo'}, {label: 'bar'}, {label: 'baz'}]
+ })
])
window.setTouchBar(touchBar)
label.label = 'baz'