Socialify

Folder ..

Viewing vault.spec.js
34 lines (28 loc) • 985.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
const { beforeHelper, afterHelper } = require('./../../helper')

describe('Vault settings', function() {
  this.timeout(10000)

  describe('User opens vault settings', () => {
    before(() => beforeHelper({ storage: 'empty' }))

    after(() => afterHelper())

    it('shows vault settings', () => {
      return expect(
        app.client
          .setValue('input[type=password]', 'password')
          .keys('\uE007')
          .waitForExist('.body .list')
          .click('.settings-button')
          .getText('.body h1')
      ).to.eventually.equal('Vault Settings')
    })

    it('contains connect to google drive button', () => {
      return expect(
        app.client.getText('.section:nth-of-type(1) .button')
      ).to.eventually.equal('Connect your Google Drive')
    })

    it('contains save vault file button', () => {
      return expect(
        app.client.getText('.section:nth-of-type(2) .button')
      ).to.eventually.equal('Save Vault File')
    })
  })
})