mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
|
import { expect, Page } from '@playwright/test';
|
||
|
|
||
|
export async function checkForErrors(page: Page) {
|
||
|
const errors = await page.evaluate(() => (window as any).getAppErrors());
|
||
|
expect(errors).toEqual([]);
|
||
|
}
|