mirror of
https://github.com/Kuingsmile/PicList.git
synced 2025-01-23 14:48:13 -05:00
14 lines
299 B
JavaScript
14 lines
299 B
JavaScript
import utils from '../utils'
|
|
|
|
describe('Launch', function () {
|
|
beforeEach(utils.beforeEach)
|
|
afterEach(utils.afterEach)
|
|
|
|
it('shows the proper application title', function () {
|
|
return this.app.client.getTitle()
|
|
.then(title => {
|
|
expect(title).to.equal('picgo')
|
|
})
|
|
})
|
|
})
|