tiny-vue/examples/sites/demos/pc/app/chart/bmap/bmap.spec.ts

8 lines
239 B
TypeScript

import { test, expect } from '@playwright/test'
test('base', async ({ page }) => {
await page.goto('chart-baidu-map#bmap-base')
const chart = page.locator('#bmap-base .hui-chart')
await expect(chart).toHaveScreenshot('base.png')
})