提交 cf393489 编写于 作者: DCloud-WZF's avatar DCloud-WZF 💬

test(global events): 更新测试例

上级 66676d8c
...@@ -40,8 +40,8 @@ describe('event trigger', () => { ...@@ -40,8 +40,8 @@ describe('event trigger', () => {
screenY: 101 screenY: 101
}, ], }, ],
}) })
const touchStartTouchTargetIdentifier = isAndroid ? '1.0' : '1' const touchStartTouchTargetIdentifier = '1'
const touchStartTouchTargetValue = isAndroid ? '101.0' : '101' const touchStartTouchTargetValue = '101'
const touchStartTouchIdentifier = await page.$('#touch-start-touch-identifier') const touchStartTouchIdentifier = await page.$('#touch-start-touch-identifier')
expect(await touchStartTouchIdentifier.text()).toBe(touchStartTouchTargetIdentifier) expect(await touchStartTouchIdentifier.text()).toBe(touchStartTouchTargetIdentifier)
const touchStartTouchPageX = await page.$('#touch-start-touch-page-x') const touchStartTouchPageX = await page.$('#touch-start-touch-page-x')
...@@ -93,8 +93,8 @@ describe('event trigger', () => { ...@@ -93,8 +93,8 @@ describe('event trigger', () => {
}, ], }, ],
}) })
const touchMoveTouchTargetIdentifier = isAndroid ? '1.0' : '1' const touchMoveTouchTargetIdentifier = '1'
const touchMoveTouchTargetValue = isAndroid ? '102.0' : '102' const touchMoveTouchTargetValue = '102'
const touchMoveTouchIdentifier = await page.$('#touch-move-touch-identifier') const touchMoveTouchIdentifier = await page.$('#touch-move-touch-identifier')
expect(await touchMoveTouchIdentifier.text()).toBe(touchMoveTouchTargetIdentifier) expect(await touchMoveTouchIdentifier.text()).toBe(touchMoveTouchTargetIdentifier)
const touchMoveTouchPageX = await page.$('#touch-move-touch-page-x') const touchMoveTouchPageX = await page.$('#touch-move-touch-page-x')
...@@ -144,8 +144,8 @@ describe('event trigger', () => { ...@@ -144,8 +144,8 @@ describe('event trigger', () => {
screenY: 103 screenY: 103
}, ], }, ],
}) })
const touchEndTouchTargetIdentifier = isAndroid ? '1.0' : '1' const touchEndTouchTargetIdentifier = '1'
const touchEndTouchTargetValue = isAndroid ? '103.0' : '103' const touchEndTouchTargetValue = '103'
const touchEndTouchIdentifier = await page.$('#touch-end-touch-identifier') const touchEndTouchIdentifier = await page.$('#touch-end-touch-identifier')
expect(await touchEndTouchIdentifier.text()).toBe(touchEndTouchTargetIdentifier) expect(await touchEndTouchIdentifier.text()).toBe(touchEndTouchTargetIdentifier)
const touchEndTouchPageX = await page.$('#touch-end-touch-page-x') const touchEndTouchPageX = await page.$('#touch-end-touch-page-x')
...@@ -180,8 +180,8 @@ describe('event trigger', () => { ...@@ -180,8 +180,8 @@ describe('event trigger', () => {
it('click', async () => { it('click', async () => {
const el = await page.$('#longpress-target') const el = await page.$('#longpress-target')
await el.tap() await el.tap()
const targetX = isAndroid ? '0.0' : '0' const targetX = '0'
const targetY = isAndroid ? '0.0' : '0' const targetY = '0'
const tapEventX = await page.$('#tap-event-x') const tapEventX = await page.$('#tap-event-x')
expect(await tapEventX.text()).toBe(targetX) expect(await tapEventX.text()).toBe(targetX)
const tapEventY = await page.$('#tap-event-y') const tapEventY = await page.$('#tap-event-y')
...@@ -196,8 +196,8 @@ describe('event trigger', () => { ...@@ -196,8 +196,8 @@ describe('event trigger', () => {
if (!process.env.UNI_AUTOMATOR_APP_WEBVIEW) { if (!process.env.UNI_AUTOMATOR_APP_WEBVIEW) {
const el = await page.$('#longpress-target') const el = await page.$('#longpress-target')
await el.longpress() await el.longpress()
const longPressTouchTargetIdentifier = isAndroid ? '1.0' : '1' const longPressTouchTargetIdentifier = '1'
const longPressTouchTargetValue = isAndroid ? '0.0' : '0' const longPressTouchTargetValue = '0'
const longPressTouchIdentifier = await page.$('#long-press-touch-identifier') const longPressTouchIdentifier = await page.$('#long-press-touch-identifier')
expect(await longPressTouchIdentifier.text()).toBe(longPressTouchTargetIdentifier) expect(await longPressTouchIdentifier.text()).toBe(longPressTouchTargetIdentifier)
const longPressTouchPageX = await page.$('#long-press-touch-page-x') const longPressTouchPageX = await page.$('#long-press-touch-page-x')
...@@ -300,7 +300,9 @@ describe('event trigger', () => { ...@@ -300,7 +300,9 @@ describe('event trigger', () => {
] = await page.callMethod('jest_getRect') ] = await page.callMethod('jest_getRect')
expect(x > 0).toBe(true) expect(x > 0).toBe(true)
expect(y > 0).toBe(true) await program.tap({ expect(y > 0).toBe(true)
await program.tap({
x: x, x: x,
y: y y: y
}) })
...@@ -317,4 +319,4 @@ describe('event trigger', () => { ...@@ -317,4 +319,4 @@ describe('event trigger', () => {
expect(1).toBe(1) expect(1).toBe(1)
} }
}) })
}) })
\ No newline at end of file
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册