1
0
mirror of https://github.com/h3poteto/whalebird-desktop synced 2024-12-12 08:46:34 +01:00
Whalebird-desktop-client-ma.../test/e2e/specs/Launch.spec.js
2018-03-07 22:28:48 +09:00

14 lines
303 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('whalebird')
})
})
})