Socialify

Folder ..

Viewing scope.spec.js
77 lines (65 loc) • 2.2 KB

 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
const { beforeHelper, afterHelper } = require('./../../helper')

describe('Scope switching', function() {
  this.timeout(10000)

  describe('user launches application', () => {
    before(() => beforeHelper({ storage: 'example' }))

    after(() => afterHelper())

    it('shows 3 scopes', () => {
      return expect(
        app.client
          .setValue('input[type=password]', 'password')
          .keys('\uE007')
          .waitForExist('.sidebar')
          .isExisting('.switcher .tooltip-context:nth-child(3)')
      ).to.eventually.equal(true)
    })

    it('highlights logins scope as current', () => {
      return expect(
        app.client.isExisting(
          '.switcher .tooltip-context:nth-child(1) .item.current'
        )
      ).to.eventually.equal(true)
    })

    it('displays entries for given scope', () => {
      return expect(
        app.client.getText('.body .list .entry')
      ).to.eventually.equal('Example\nmyuser')
    })

    it('switches scope to notes', () => {
      return expect(
        app.client
          .click('.switcher .tooltip-context:nth-child(2)')
          .isExisting('.switcher .tooltip-context:nth-child(2) .item.current')
      ).to.eventually.equal(true)
    })

    it('displays entries for given scope', () => {
      return expect(app.client.getText('.body .list')).to.eventually.equal(
        'No Items'
      )
    })

    it('switches scope to cards', () => {
      return expect(
        app.client
          .click('.switcher .tooltip-context:nth-child(3)')
          .isExisting('.switcher .tooltip-context:nth-child(3) .item.current')
      ).to.eventually.equal(true)
    })

    it('displays entries for given scope', () => {
      return expect(app.client.getText('.body .list')).to.eventually.equal(
        'No Items'
      )
    })

    it('switches scope back to logins', () => {
      return expect(
        app.client
          .click('.switcher .tooltip-context:nth-child(1)')
          .isExisting('.switcher .tooltip-context:nth-child(1) .item.current')
      ).to.eventually.equal(true)
    })

    it('displays entries for given scope', () => {
      return expect(app.client.getText('.body .list')).to.eventually.equal(
        'Example\nmyuser'
      )
    })
  })
})