userinfo.test.js 1.0 KB
Newer Older
study夏羽's avatar
study夏羽 已提交
1 2 3 4 5 6
// jest官方文档: https://www.jestjs.cn/
// uniapp自动化测试教程: https://uniapp.dcloud.io/collocation/auto/quick-start
describe('pages/ucenter/userinfo/userinfo.vue', () => {

	let page
	beforeAll(async () => {
study夏羽's avatar
study夏羽 已提交
7
		page = await program.navigateTo('/pages/ucenter/userinfo/userinfo')
study夏羽's avatar
study夏羽 已提交
8
		console.log("page: ",page);
study夏羽's avatar
study夏羽 已提交
9 10 11 12
		await page.waitFor(500)
	})

	
study夏羽's avatar
study夏羽 已提交
13
	it('设置昵称', async () => {
study夏羽's avatar
study夏羽 已提交
14 15 16 17 18
		const name = "数字天堂DCloud" +  Math.round(Math.random()*10);
		await page.waitFor(300)
		const nicknameRes = await page.callMethod("setNickname",name)
		console.log("nicknameRes: ",nicknameRes);
		// expect(nicknameRes.updated).toBe(1)
study夏羽's avatar
study夏羽 已提交
19
	})
study夏羽's avatar
study夏羽 已提交
20 21
	
	it('绑定手机号', async () => {
study夏羽's avatar
study夏羽 已提交
22 23
		await page.callMethod('bindMobileBySmsCode')
		
study夏羽's avatar
study夏羽 已提交
24
		await page.waitFor(300)
study夏羽's avatar
study夏羽 已提交
25
		// expect((await program.currentPage()).path).toBe('pages/ucenter/userinfo/bind-mobile/bind-mobile')
study夏羽's avatar
study夏羽 已提交
26
		console.log("currentPage---------------- ",await program.currentPage());
study夏羽's avatar
测试  
study夏羽 已提交
27
		// expect((await program.navigateBack()).path).toBe('pages/ucenter/userinfo/userinfo')
study夏羽's avatar
study夏羽 已提交
28 29 30
	})
	
})