Launch.spec.js 297 B

1234567891011121314
  1. import utils from '../utils'
  2. describe('Launch', function () {
  3. beforeEach(utils.beforeEach)
  4. afterEach(utils.afterEach)
  5. it('shows the proper application title', function () {
  6. return this.app.client.getTitle()
  7. .then(title => {
  8. expect(title).to.equal('zxy')
  9. })
  10. })
  11. })