forked from opentiny/tiny-vue
8 lines
339 B
JavaScript
8 lines
339 B
JavaScript
import { test, expect } from '@playwright/test'
|
|
|
|
test('自定义列样式', async ({ page }) => {
|
|
page.on('pageerror', (exception) => expect(exception).toBeNull())
|
|
await page.goto('grid-custom-style#custom-style-class-name')
|
|
await expect(page.locator('.gridClassName').first()).toHaveCSS('background-color', 'rgb(230, 247, 255)')
|
|
})
|