flightgear-airports-old/test/e2e/specs/Launch.spec.js

14 lines
313 B
JavaScript
Raw Permalink Normal View History

2019-11-06 05:43:18 +08:00
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('flightgear-airports')
})
})
})