Atom Shell -> Electron

This commit is contained in:
Kevin Sawicki 2015-04-08 10:16:10 -07:00
parent 6ca4623ae1
commit 6615ef1054
11 changed files with 18 additions and 18 deletions

View file

@ -15,11 +15,11 @@ describe 'app module', ->
describe 'app.getName()', ->
it 'returns the name field of package.json', ->
assert.equal app.getName(), 'Atom Shell Test App'
assert.equal app.getName(), 'Electron Test App'
describe 'app.setName(name)', ->
it 'overrides the name', ->
assert.equal app.getName(), 'Atom Shell Test App'
assert.equal app.getName(), 'Electron Test App'
app.setName 'test-name'
assert.equal app.getName(), 'test-name'
app.setName 'Atom Shell Test App'
app.setName 'Electron Test App'