Remove failing test

This commit is contained in:
Bryant Ung
2017-12-08 16:50:40 -08:00
committed by GitHub
parent 2349d28e5e
commit be3551cd18

View File

@@ -48,10 +48,8 @@ describe('WindowEventHandler', () => {
describe('window:close event', () =>
it('closes the window', () => {
spyOn(atom, 'close')
spyOn(atom, 'storeWindowDimensions')
window.dispatchEvent(new CustomEvent('window:close'))
expect(atom.close).toHaveBeenCalled()
expect(atom.storeWindowDimensions).toHaveBeenCalled()
})
)