12345678910111213141516171819202122232425 |
- const PAGE_PATH = '/pages/template/calendar/calendar'
- describe('calendar', () => {
- const platformInfo = process.env.uniTestPlatformInfo.toLocaleLowerCase()
- const isAndroid = platformInfo.startsWith('android')
- const isIos = platformInfo.startsWith('ios')
- const isApp = isAndroid || isIos
- const isWeb = platformInfo.startsWith('web')
- const isMP = platformInfo.startsWith('mp')
- if (isWeb || isMP || process.env.UNI_AUTOMATOR_APP_WEBVIEW == 'true') {
- it('not support', () => {
- expect(1).toBe(1)
- })
- return
- }
- let page
- beforeAll(async () => {
- page = await program.reLaunch(PAGE_PATH)
- await page.waitFor(500)
- })
- it('width', async () => {
- const pageData = await page.data()
- expect(pageData.testWidth > 0).toBe(true)
- })
- })
|