/
githubmirror
/
atom
Обзор
Документация
Войти
/
githubmirror
/
atom
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
spec/pane-axis-element-spec.js
40 строк
1 KB
Sadick
Decaffeinate specs (#21546)
30 окт 2020, 16:40
Не верифицирован
30 окт 2020, 16:40
83d6c09
Код
Авторство
О чём код?
const PaneAxis = require('../src/pane-axis'); const PaneContainer = require('../src/pane-container'); const Pane = require('../src/pane'); const buildPane = () => new Pane({ applicationDelegate: atom.applicationDelegate, config: atom.config, deserializerManager: atom.deserializers, notificationManager: atom.notifications, viewRegistry: atom.views }); describe('PaneAxisElement', () => it('correctly subscribes and unsubscribes to the underlying model events on attach/detach', function() { const container = new PaneContainer({ config: atom.config, applicationDelegate: atom.applicationDelegate, viewRegistry: atom.views }); const axis = new PaneAxis({}, atom.views); axis.setContainer(container); const axisElement = axis.getElement(); const panes = [buildPane(), buildPane(), buildPane()]; jasmine.attachToDOM(axisElement); axis.addChild(panes[0]); expect(axisElement.children[0]).toBe(panes[0].getElement()); axisElement.remove(); axis.addChild(panes[1]); expect(axisElement.children[2]).toBeUndefined(); jasmine.attachToDOM(axisElement); expect(axisElement.children[2]).toBe(panes[1].getElement()); axis.addChild(panes[2]); expect(axisElement.children[4]).toBe(panes[2].getElement()); }));