1234567891011121314151617181920 |
- const isAppWebView = process.env.UNI_AUTOMATOR_APP_WEBVIEW == 'true'
- describe('css-variable', () => {
- if (isAppWebView) {
- it('app 与 web 存在差异, webview 不进行截图', () => {
- expect(1).toBe(1)
- return
- })
- }
- it('screenshot', async () => {
- const page = await program.reLaunch('/pages/CSS/variable/variable');
- await page.waitFor('view');
- const image = await program.screenshot({
- fullPage: true
- })
- expect(image).toSaveImageSnapshot()
- });
- });
|