You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-11-23 22:36:32 +02:00
8 lines
200 B
TypeScript
8 lines
200 B
TypeScript
import { ElectronApplication } from '@playwright/test';
|
|
|
|
const getMainWindow = async (electronApp: ElectronApplication) => {
|
|
return await electronApp.firstWindow();
|
|
};
|
|
|
|
export default getMainWindow;
|