mirror of
https://github.com/iflytek/skillhub.git
synced 2026-09-07 08:26:00 +00:00
* chore(workflow): align local hooks and e2e guidance * test(e2e): expand reusable api mock helpers * test(skill): stabilize share button e2e assertions * chore(test): add e2e make target and tune playwright workers * test(web): expand e2e coverage and smoke suite * test(e2e): migrate to real API flows and add request-based data builder * ci(e2e): add PR workflow for real-service frontend e2e * ci(e2e): install playwright chromium in PR workflow * test(e2e): relax timeout and force single worker in CI * test(e2e): stabilize not-found assertions and harden CI session bootstrap * chore(agents): align tester role with web/e2e workflow
7 lines
193 B
TypeScript
7 lines
193 B
TypeScript
import type { Page } from '@playwright/test'
|
|
|
|
export async function setEnglishLocale(page: Page) {
|
|
await page.addInitScript(() => {
|
|
window.localStorage.setItem('i18nextLng', 'en')
|
|
})
|
|
}
|