to-value.test.js 1.3 KB
Newer Older
DCloud-WZF's avatar
DCloud-WZF 已提交
1
const PAGE_PATH = '/pages/composition-api/reactivity/to-value/to-value'
2 3
const platformInfo = process.env.uniTestPlatformInfo.toLowerCase()
const isWeb = platformInfo.startsWith('web')
DCloud-WZF's avatar
DCloud-WZF 已提交
4 5

describe('toValue', () => {
雪洛's avatar
雪洛 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19
  let page = null
  beforeAll(async () => {
    page = await program.reLaunch(PAGE_PATH)
    await page.waitFor('view')
  })
  it('basic', async () => {
    const refCount = await page.$('#ref-count')
    expect(await refCount.text()).toBe('ref count: 0')
    const isRefRefCount = await page.$('#is-ref-ref-count')
    expect(await isRefRefCount.text()).toBe('isRef ref count: true')
    const count = await page.$('#count')
    expect(await count.text()).toBe('count: 0')
    const isRefCount = await page.$('#is-ref-count')
    expect(await isRefCount.text()).toBe('isRef count: false')
DCloud-WZF's avatar
DCloud-WZF 已提交
20

雪洛's avatar
雪洛 已提交
21 22 23 24
    const objNum = await page.$('#obj-num')
    expect(await objNum.text()).toBe('obj.num: 0')
    const toValueObjNum = await page.$('#to-value-obj-num')
    expect(await toValueObjNum.text()).toBe('toValue(() => obj.num): 0')
DCloud-WZF's avatar
DCloud-WZF 已提交
25

雪洛's avatar
雪洛 已提交
26 27
    const incrementBtn = await page.$('#increment-btn')
    await incrementBtn.tap()
DCloud-WZF's avatar
DCloud-WZF 已提交
28

雪洛's avatar
雪洛 已提交
29
    expect(await objNum.text()).toBe('obj.num: 1')
30 31 32
    if (!isWeb) {
      expect(await toValueObjNum.text()).toBe('toValue(() => obj.num): 1')
    }
雪洛's avatar
雪洛 已提交
33
  })
DCloud-WZF's avatar
DCloud-WZF 已提交
34
})