diff --git a/pages/composition-api/basic/define-emits/array-literal.uvue b/pages/composition-api/basic/define-emits/array-literal.uvue index 95037479cbfec5600bc021506efec571460fbfb7..357563ae7af5b2bd7eba103f238644f03cac2b1a 100644 --- a/pages/composition-api/basic/define-emits/array-literal.uvue +++ b/pages/composition-api/basic/define-emits/array-literal.uvue @@ -1,7 +1,7 @@ diff --git a/pages/composition-api/basic/define-emits/define-emits.test.js b/pages/composition-api/basic/define-emits/define-emits.test.js index 8499c35f26ecda22bc18a7050d951dd197c0f123..e8883f1bc7d7d06be183ef716bf8a9e2f3338bbb 100644 --- a/pages/composition-api/basic/define-emits/define-emits.test.js +++ b/pages/composition-api/basic/define-emits/define-emits.test.js @@ -1,40 +1,37 @@ const PAGE_PATH = '/pages/composition-api/basic/define-emits/define-emits' describe('defineEmits', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const handleArrayLiteralChangeRes = await page.$('#handle-array-literal-change-res') - expect(await handleArrayLiteralChangeRes.text()).toBe('handle array literal comp change result: ') - - const arrayLiteralEmitBtn = await page.$('#array-literal-emit-btn') - await arrayLiteralEmitBtn.tap() - - expect(await handleArrayLiteralChangeRes.text()).toBe('handle array literal comp change result: options is 1') - - const handleTypeEmits1ChangeRes = await page.$('#handle-type-emits1-change-res') - expect(await handleTypeEmits1ChangeRes.text()).toBe('handle type emits comp change result: ') - - const typeEmits1EmitBtn = await page.$('#type-emits1-emit-btn') - await typeEmits1EmitBtn.tap() - - expect(await handleTypeEmits1ChangeRes.text()).toBe('handle type emits comp change result: options is 2') - - const handleTypeEmits2ChangeRes = await page.$('#handle-type-emits2-change-res') - expect(await handleTypeEmits2ChangeRes.text()).toBe('handle type emits named tuple syntax comp change result: ') - - const typeEmits2EmitBtn = await page.$('#type-emits2-emit-btn') - await typeEmits2EmitBtn.tap() - - expect(await handleTypeEmits2ChangeRes.text()).toBe('handle type emits named tuple syntax comp change result: options is 3') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const handleArrayLiteralChangeRes = await page.$('#handle-array-literal-change-res') + expect((await handleArrayLiteralChangeRes.text()).trim()).toBe('handle array literal comp change result:') + + const arrayLiteralEmitBtn = await page.$('.array-literal-emit-btn') + await arrayLiteralEmitBtn.tap() + + expect(await handleArrayLiteralChangeRes.text()).toBe( + 'handle array literal comp change result: options is 1') + + const handleTypeEmits1ChangeRes = await page.$('#handle-type-emits1-change-res') + expect((await handleTypeEmits1ChangeRes.text()).trim()).toBe('handle type emits comp change result:') + + const typeEmits1EmitBtn = await page.$('.type-emits1-emit-btn') + await typeEmits1EmitBtn.tap() + + expect(await handleTypeEmits1ChangeRes.text()).toBe('handle type emits comp change result: options is 2') + + const handleTypeEmits2ChangeRes = await page.$('#handle-type-emits2-change-res') + expect((await handleTypeEmits2ChangeRes.text()).trim()).toBe( + 'handle type emits named tuple syntax comp change result:') + + const typeEmits2EmitBtn = await page.$('.type-emits2-emit-btn') + await typeEmits2EmitBtn.tap() + + expect(await handleTypeEmits2ChangeRes.text()).toBe( + 'handle type emits named tuple syntax comp change result: options is 3') + }) }) \ No newline at end of file diff --git a/pages/composition-api/basic/define-emits/type-emits-1.uvue b/pages/composition-api/basic/define-emits/type-emits-1.uvue index 651c6043cca609c75c925cc60359779121511996..ac937d8f7ba9c75b7d8fb17fdff0b44223cf46d0 100644 --- a/pages/composition-api/basic/define-emits/type-emits-1.uvue +++ b/pages/composition-api/basic/define-emits/type-emits-1.uvue @@ -1,7 +1,7 @@ diff --git a/pages/composition-api/basic/define-emits/type-emits-2.uvue b/pages/composition-api/basic/define-emits/type-emits-2.uvue index 4f3589f1ef5753e1448fcf3c0833765e09a527e3..3e05199c636821cd3ae39af10169480b4315ccdd 100644 --- a/pages/composition-api/basic/define-emits/type-emits-2.uvue +++ b/pages/composition-api/basic/define-emits/type-emits-2.uvue @@ -1,7 +1,7 @@ diff --git a/pages/composition-api/basic/define-options/define-options.test.js b/pages/composition-api/basic/define-options/define-options.test.js index 794d1ec22b9cd6339ab6e94accd545df4baba3ba..05f0ebd33668acf8c3e9c5ada35863d5e4e43811 100644 --- a/pages/composition-api/basic/define-options/define-options.test.js +++ b/pages/composition-api/basic/define-options/define-options.test.js @@ -1,31 +1,25 @@ const PAGE_PATH = '/pages/composition-api/basic/define-options/define-options' describe('defineOptions', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const count = await page.$('#count') - expect(await count.text()).toBe('count: 0') - const doubleCount = await page.$('#double-count') - expect(await doubleCount.text()).toBe('double count: 0') - const total = await page.$('#total') - expect(await total.text()).toBe('total: 0') - - const incrementBtn = await page.$('#increment-btn') - await incrementBtn.tap() - - expect(await count.text()).toBe('count: 1') - expect(await doubleCount.text()).toBe('double count: 2') - const price = await page.data('price') - expect(await total.text()).toBe(`total: ${1*price}`) - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const count = await page.$('#count') + expect(await count.text()).toBe('count: 0') + const doubleCount = await page.$('#double-count') + expect(await doubleCount.text()).toBe('double count: 0') + const total = await page.$('#total') + expect(await total.text()).toBe('total: 0') + + const incrementBtn = await page.$('.increment-btn') + await incrementBtn.tap() + + expect(await count.text()).toBe('count: 1') + expect(await doubleCount.text()).toBe('double count: 2') + const price = await page.data('price') + expect(await total.text()).toBe(`total: ${1*price}`) + }) }) \ No newline at end of file diff --git a/pages/composition-api/basic/define-options/define-options.uvue b/pages/composition-api/basic/define-options/define-options.uvue index 7baf8a285b5db1a06b8d4ae17eb391ef69822fdc..ce14c36fc814e94227fbc406b0b54185af8b3ecb 100644 --- a/pages/composition-api/basic/define-options/define-options.uvue +++ b/pages/composition-api/basic/define-options/define-options.uvue @@ -3,7 +3,7 @@ count: {{ count }} double count: {{ doubleCount}} total: {{ total}} - + diff --git a/pages/composition-api/basic/define-props/define-props.test.js b/pages/composition-api/basic/define-props/define-props.test.js index e375515ac9aea1bbbd3dae1aa3ad78d6cf659c0e..49abf5ba7939ab76729381c03462b489c68c70f1 100644 --- a/pages/composition-api/basic/define-props/define-props.test.js +++ b/pages/composition-api/basic/define-props/define-props.test.js @@ -1,55 +1,71 @@ const PAGE_PATH = '/pages/composition-api/basic/define-props/define-props' describe('defineProps', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const arrayLiteralStr = await page.$('#array-literal-str') - expect(await arrayLiteralStr.text()).toBe('str: default str') - const arrayLiteralNum = await page.$('#array-literal-num') - expect(await arrayLiteralNum.text()).toBe('num: 0') - const arrayLiteralBool = await page.$('#array-literal-bool') - expect(await arrayLiteralBool.text()).toBe('bool: false') - const arrayLiteralArr = await page.$('#array-literal-arr') - expect(await arrayLiteralArr.text()).toBe('arr: ["a","b","c"]') - const arrayLiteralObj = await page.$('#array-literal-obj') + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const arrayLiteralStr = await page.$('#array-literal-str') + expect(await arrayLiteralStr.text()).toBe('str: default str') + const arrayLiteralNum = await page.$('#array-literal-num') + expect(await arrayLiteralNum.text()).toBe('num: 0') + const arrayLiteralBool = await page.$('#array-literal-bool') + expect(await arrayLiteralBool.text()).toBe('bool: false') + const arrayLiteralArr = await page.$('#array-literal-arr') + expect((await arrayLiteralArr.text()).replaceAll('\n', '')).toBe('arr: ["a","b","c"]') + + const arrayLiteralObj = await page.$('#array-literal-obj') + if (process.env.uniTestPlatformInfo.startsWith('android')) { expect(await arrayLiteralObj.text()).toBe('obj: {"arr":[1,2,3],"num":0,"str":"obj str"}') - const arrayLiteralFn = await page.$('#array-literal-fn') - expect(await arrayLiteralFn.text()).toBe('fn: fn res') + } + if (process.env.uniTestPlatformInfo.startsWith('web')) { + expect((await arrayLiteralObj.text()).replaceAll('\n', '')).toBe( + 'obj: {"str": "obj str","num": 0,"arr": [1,2,3]}') + } - const objectLiteralStr = await page.$('#object-literal-str') - expect(await objectLiteralStr.text()).toBe('str: default str') - const objectLiteralNum = await page.$('#object-literal-num') - expect(await objectLiteralNum.text()).toBe('num: 0') - const objectLiteralBool = await page.$('#object-literal-bool') - expect(await objectLiteralBool.text()).toBe('bool: false') - const objectLiteralArr = await page.$('#object-literal-arr') - expect(await objectLiteralArr.text()).toBe('arr: ["a","b","c"]') - const objectLiteralObj = await page.$('#object-literal-obj') + const arrayLiteralFn = await page.$('#array-literal-fn') + expect(await arrayLiteralFn.text()).toBe('fn: fn res') + + const objectLiteralStr = await page.$('#object-literal-str') + expect(await objectLiteralStr.text()).toBe('str: default str') + const objectLiteralNum = await page.$('#object-literal-num') + expect(await objectLiteralNum.text()).toBe('num: 0') + const objectLiteralBool = await page.$('#object-literal-bool') + expect(await objectLiteralBool.text()).toBe('bool: false') + const objectLiteralArr = await page.$('#object-literal-arr') + expect((await objectLiteralArr.text()).replaceAll('\n', '')).toBe('arr: ["a","b","c"]') + + const objectLiteralObj = await page.$('#object-literal-obj') + if (process.env.uniTestPlatformInfo.startsWith('android')) { expect(await objectLiteralObj.text()).toBe('obj: {"a":1}') - const objectLiteralFn = await page.$('#object-literal-fn') - expect(await objectLiteralFn.text()).toBe('fn: fn res') + } + if (process.env.uniTestPlatformInfo.startsWith('web')) { + expect((await objectLiteralObj.text()).replaceAll('\n', '')).toBe('obj: {"a": 1}') + } + + const objectLiteralFn = await page.$('#object-literal-fn') + expect(await objectLiteralFn.text()).toBe('fn: fn res') - const typeStr = await page.$('#type-str') - expect(await typeStr.text()).toBe('str: default str') - const typeNum = await page.$('#type-num') - expect(await typeNum.text()).toBe('num: 0') - const typeBool = await page.$('#type-bool') - expect(await typeBool.text()).toBe('bool: false') - const typeArr = await page.$('#type-arr') - expect(await typeArr.text()).toBe('arr: ["a","b","c"]') - const typeObj = await page.$('#type-obj') + const typeStr = await page.$('#type-str') + expect(await typeStr.text()).toBe('str: default str') + const typeNum = await page.$('#type-num') + expect(await typeNum.text()).toBe('num: 0') + const typeBool = await page.$('#type-bool') + expect(await typeBool.text()).toBe('bool: false') + const typeArr = await page.$('#type-arr') + expect((await typeArr.text()).replaceAll('\n', '')).toBe('arr: ["a","b","c"]') + + const typeObj = await page.$('#type-obj') + if (process.env.uniTestPlatformInfo.startsWith('android')) { expect(await typeObj.text()).toBe('obj: {"arr":[1,2,3],"num":0,"str":"obj str"}') - const typeFn = await page.$('#type-fn') - expect(await typeFn.text()).toBe('fn: fn res') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } + } + if (process.env.uniTestPlatformInfo.startsWith('web')) { + expect((await typeObj.text()).replaceAll('\n', '')).toBe('obj: {"str": "obj str","num": 0,"arr": [1,2,3]}') + + } + const typeFn = await page.$('#type-fn') + expect(await typeFn.text()).toBe('fn: fn res') + }) }) \ No newline at end of file diff --git a/pages/composition-api/basic/define-slots/define-slots.test.js b/pages/composition-api/basic/define-slots/define-slots.test.js index 427deb3a8feb101e42a51c12a203749201185e20..e87c03931553d25407d27e26530fd76e6e0b5508 100644 --- a/pages/composition-api/basic/define-slots/define-slots.test.js +++ b/pages/composition-api/basic/define-slots/define-slots.test.js @@ -1,25 +1,19 @@ const PAGE_PATH = '/pages/composition-api/basic/define-slots/define-slots' describe('defineSlots', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const slotHeader = await page.$('#slot-header') - expect(await slotHeader.text()).toBe('header slot msg: foo msg') - - const slotContent = await page.$('#slot-default') - expect(await slotContent.text()).toBe('default slot num: 0') - - const slotFooter = await page.$('#slot-footer') - expect(await slotFooter.text()).toBe('footer slot arr: ["a","b","c"]') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const slotHeader = await page.$('#slot-header') + expect(await slotHeader.text()).toBe('header slot msg: foo msg') + + const slotContent = await page.$('#slot-default') + expect(await slotContent.text()).toBe('default slot num: 0') + + const slotFooter = await page.$('#slot-footer') + expect((await slotFooter.text()).replaceAll('\n', '')).toBe('footer slot arr: ["a","b","c"]') + }) }) \ No newline at end of file diff --git a/pages/composition-api/basic/use-attrs/use-attrs.test.js b/pages/composition-api/basic/use-attrs/use-attrs.test.js index 4b2575e0bac1ae148c1e74970614f8d790c2aa1c..6f0c853dc51ab420236d850b420056d72228e2f2 100644 --- a/pages/composition-api/basic/use-attrs/use-attrs.test.js +++ b/pages/composition-api/basic/use-attrs/use-attrs.test.js @@ -1,22 +1,17 @@ const PAGE_PATH = '/pages/composition-api/basic/use-attrs/use-attrs' describe('useAttrs', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const attrsClass = await page.$('#attrs-class') - expect(await attrsClass.text()).toBe('attrs.class: foo') + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const attrsClass = await page.$('#attrs-class') + expect(await attrsClass.text()).toBe('attrs.class: foo') + + const attrsMsg = await page.$('#attrs-msg') + expect(await attrsMsg.text()).toBe('attrs.msg: msg') + }) - const attrsMsg = await page.$('#attrs-msg') - expect(await attrsMsg.text()).toBe('attrs.msg: msg') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } }) \ No newline at end of file diff --git a/pages/composition-api/reactivity/computed/computed.test.js b/pages/composition-api/reactivity/computed/computed.test.js index 49873d5622e6215a2c1d6e13243865ce67306c38..90a7e4fa6dcc2ad146a7f09f57c423aedb1a6a65 100644 --- a/pages/composition-api/reactivity/computed/computed.test.js +++ b/pages/composition-api/reactivity/computed/computed.test.js @@ -1,34 +1,29 @@ const PAGE_PATH = '/pages/composition-api/reactivity/computed/computed' describe('computed', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const count = await page.$('#count') - expect(await count.text()).toBe('count: 0') - const doubleCount = await page.$('#double-count') - expect(await doubleCount.text()).toBe('computed double count: 0') + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const count = await page.$('#count') + expect(await count.text()).toBe('count: 0') + const doubleCount = await page.$('#double-count') + expect(await doubleCount.text()).toBe('computed double count: 0') - const objArr = await page.$('#obj-arr') - expect(await objArr.text()).toBe('obj.arr: [1,2,3]') - const objArrLen = await page.$('#obj-arr-len') - expect(await objArrLen.text()).toBe('computed obj.arr.length: 3') + const objArr = await page.$('#obj-arr') + expect((await objArr.text()).replaceAll('\n', '')).toBe('obj.arr: [1,2,3]') + const objArrLen = await page.$('#obj-arr-len') + expect(await objArrLen.text()).toBe('computed obj.arr.length: 3') - const updateBtn = await page.$('#update-btn') - await updateBtn.tap() + const updateBtn = await page.$('.update-btn') + await updateBtn.tap() + + expect(await count.text()).toBe('count: 1') + expect(await doubleCount.text()).toBe('computed double count: 2') + expect((await objArr.text()).replaceAll('\n', '')).toBe('obj.arr: [1,2,3,4]') + expect(await objArrLen.text()).toBe('computed obj.arr.length: 4') + }) - expect(await count.text()).toBe('count: 1') - expect(await doubleCount.text()).toBe('computed double count: 2') - expect(await objArr.text()).toBe('obj.arr: [1,2,3,4]') - expect(await objArrLen.text()).toBe('computed obj.arr.length: 4') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } }) \ No newline at end of file diff --git a/pages/composition-api/reactivity/computed/computed.uvue b/pages/composition-api/reactivity/computed/computed.uvue index 2ec5d0ff46a10c6930bfc5b19b53a2eadfaa0a5f..bf59641989d4c5880289744b4ac8b084ec620b92 100644 --- a/pages/composition-api/reactivity/computed/computed.uvue +++ b/pages/composition-api/reactivity/computed/computed.uvue @@ -4,7 +4,7 @@ computed double count: {{ doubleCount }} obj.arr: {{ obj.arr }} computed obj.arr.length: {{ objArrLen }} - + diff --git a/pages/composition-api/reactivity/is-ref/is-ref.test.js b/pages/composition-api/reactivity/is-ref/is-ref.test.js index a36b71fec4790796d23f3277e4487f588ba0a2c5..adf6266b09fe79cb19b17815889a347309a171ce 100644 --- a/pages/composition-api/reactivity/is-ref/is-ref.test.js +++ b/pages/composition-api/reactivity/is-ref/is-ref.test.js @@ -1,26 +1,20 @@ const PAGE_PATH = '/pages/composition-api/reactivity/is-ref/is-ref' describe('isRef', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - 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') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } + 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') + }) }) \ No newline at end of file diff --git a/pages/composition-api/reactivity/ref/ref.test.js b/pages/composition-api/reactivity/ref/ref.test.js index d21563adf29dec3291ecc7e63bee3e54bc159f5a..7d5603f27db478437d1a57599ad50e3c7e390420 100644 --- a/pages/composition-api/reactivity/ref/ref.test.js +++ b/pages/composition-api/reactivity/ref/ref.test.js @@ -1,30 +1,25 @@ const PAGE_PATH = '/pages/composition-api/reactivity/ref/ref' describe('ref', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const count1 = await page.$('#count1') - expect(await count1.text()).toBe('count1: 0') - const count2 = await page.$('#count2') - expect(await count2.text()).toBe('count2: 0') - const counterCount = await page.$('#counter-count') - expect(await counterCount.text()).toBe('counter.count: 0') + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const count1 = await page.$('#count1') + expect(await count1.text()).toBe('count1: 0') + const count2 = await page.$('#count2') + expect(await count2.text()).toBe('count2: 0') + const counterCount = await page.$('#counter-count') + expect(await counterCount.text()).toBe('counter.count: 0') - const incrementBtn = await page.$('#increment-btn') - await incrementBtn.tap() + const incrementBtn = await page.$('.increment-btn') + await incrementBtn.tap() + + expect(await count1.text()).toBe('count1: 2') + expect(await count2.text()).toBe('count2: 2') + expect(await counterCount.text()).toBe('counter.count: 1') + }) - expect(await count1.text()).toBe('count1: 2') - expect(await count2.text()).toBe('count2: 2') - expect(await counterCount.text()).toBe('counter.count: 1') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } }) \ No newline at end of file diff --git a/pages/composition-api/reactivity/ref/ref.uvue b/pages/composition-api/reactivity/ref/ref.uvue index 25dc5ed017b629cf9cf6cf7b970435b4ed365bb5..bc73789d69062b785883e58c416a7c649b3bb4e1 100644 --- a/pages/composition-api/reactivity/ref/ref.uvue +++ b/pages/composition-api/reactivity/ref/ref.uvue @@ -3,7 +3,7 @@ count1: {{ count1 }} count2: {{ count2 }} counter.count: {{ counter.count }} - + diff --git a/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.test.js b/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.test.js index 8691dcb23116dfc1db7ad2856f3fee4bc13dbc80..a5385c37c7021e6b87f98d30317229ea556777ad 100644 --- a/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.test.js +++ b/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.test.js @@ -1,33 +1,27 @@ const PAGE_PATH = '/pages/composition-api/reactivity/shallow-reactive/shallow-reactive' describe('shallowReactive', () => { - if (process.env.uniTestPlatformInfo.startsWith('android')) { - let page = null - beforeAll(async () => { - page = await program.reLaunch(PAGE_PATH) - await page.waitFor('view') - }) - it('basic', async () => { - const stateCount = await page.$('#state-count') - expect(await stateCount.text()).toBe('state.count: 0') + let page = null + beforeAll(async () => { + page = await program.reLaunch(PAGE_PATH) + await page.waitFor('view') + }) + it('basic', async () => { + const stateCount = await page.$('#state-count') + expect(await stateCount.text()).toBe('state.count: 0') - const stateNestedCount = await page.$('#state-nested-count') - expect(await stateNestedCount.text()).toBe('state.nested.count: 0') + const stateNestedCount = await page.$('#state-nested-count') + expect(await stateNestedCount.text()).toBe('state.nested.count: 0') - const incrementStateNestedCountBtn = await page.$('#increment-state-nested-count-btn') - await incrementStateNestedCountBtn.tap() + const incrementStateNestedCountBtn = await page.$('.increment-state-nested-count-btn') + await incrementStateNestedCountBtn.tap() - expect(await stateNestedCount.text()).toBe('state.nested.count: 0') + expect(await stateNestedCount.text()).toBe('state.nested.count: 0') - const incrementStateCountBtn = await page.$('#increment-state-count-btn') - await incrementStateCountBtn.tap() + const incrementStateCountBtn = await page.$('.increment-state-count-btn') + await incrementStateCountBtn.tap() - expect(await stateCount.text()).toBe('state.count: 1') - expect(await stateNestedCount.text()).toBe('state.nested.count: 1') - }) - } else { - it('other platform', () => { - expect(1).toBe(1) - }) - } + expect(await stateCount.text()).toBe('state.count: 1') + expect(await stateNestedCount.text()).toBe('state.nested.count: 1') + }) }) \ No newline at end of file diff --git a/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.uvue b/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.uvue index 578c922b44b3b3b3bcc1e6781ee08ac7ec1955a8..3c983c991d9ae1bc74c3cd96ab1fdaaf26ee6eb2 100644 --- a/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.uvue +++ b/pages/composition-api/reactivity/shallow-reactive/shallow-reactive.uvue @@ -1,11 +1,11 @@