Skip to content

Commit

Permalink
spelling: visible
Browse files Browse the repository at this point in the history
  • Loading branch information
jsoref committed Sep 10, 2017
1 parent a5e3dfc commit feb27a6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/panel-spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ describe('Panel', () => {
expect(spy).toHaveBeenCalledWith(false)
})

it('initially renders panel created with visibile: false', () => {
it('initially renders panel created with visible: false', () => {
const panel = new Panel({visible: false, item: new TestPanelItem()}, atom.views)
const element = panel.getElement()
expect(element.style.display).toBe('none')
Expand All @@ -91,7 +91,7 @@ describe('Panel', () => {
})

describe('when a class name is specified', () => {
it('initially renders panel created with visibile: false', () => {
it('initially renders panel created with visible: false', () => {
const panel = new Panel({className: 'some classes', item: new TestPanelItem()}, atom.views)
const element = panel.getElement()

Expand Down

0 comments on commit feb27a6

Please sign in to comment.