1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00
Files
joplin/packages/app-desktop/integration-tests/util/getMainWindow.ts

8 lines
200 B
TypeScript
Raw Normal View History

import { ElectronApplication } from '@playwright/test';
const getMainWindow = async (electronApp: ElectronApplication) => {
return await electronApp.firstWindow();
};
export default getMainWindow;