const PAGE_PATH = '/pages/component-instance/provide/provide-composition'
describe('组合式 API provide', () => {
let page = null
beforeAll(async () => {
page = await program.reLaunch(PAGE_PATH)
await page.waitFor('view')
})
it('baisc', async () => {
const msg = await page.$('.msg')
expect(await msg.text()).toBe('msg: hello')
const num = await page.$('.num')
expect(await num.text()).toBe('num: 0')
const obj = await page.$('.obj')
expect(await obj.text()).toBe('obj: {"a":1}')
const arr = await page.$('.arr')
expect(await arr.text()).toBe('arr: [1,2,3]')
const arr0 = await page.$('.arr-0')
expect(await arr0.text()).toBe('arr[0]: 1')
const fn = await page.$('.fn')
expect(await fn.text()).toBe('fn: hello')
const hasInjectionContext = await page.$('.has-injection-context')
expect(await hasInjectionContext.text()).toBe('hasInjectionContext: true')
const checkHasInjectionContextBtn = await page.$('.check-has-injection-context-btn')
await checkHasInjectionContextBtn.tap()
await page.waitFor(500)
expect(await hasInjectionContext.text()).toBe('hasInjectionContext: false')
})
})