Launch.spec.js 307 B

12345678910111213
  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('pilot-project')
  9. })
  10. })
  11. })