3 lines
312 B
TypeScript
3 lines
312 B
TypeScript
import { test, expect } from '@playwright/test'
|
|
test('experiment governance screen keeps safe scope visible',async({page})=>{await page.goto('/internal/kbx/experiments');await expect(page.getByText('안전 범위')).toBeVisible();await expect(page.getByText(/권한·민감정보·Domain Rule/)).toBeVisible()})
|