You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
949 B
TypeScript
28 lines
949 B
TypeScript
import { _electron } from '@playwright/test';
|
|
import { join } from 'path';
|
|
import { getAppRootPath } from '../../../node/getRootPath';
|
|
|
|
export const NODE_ENV = 'production';
|
|
export const MULTI_PREFIX = 'test-integration-testnet-';
|
|
|
|
export const openElectronAppOnly = async (multi: string) => {
|
|
process.env.NODE_APP_INSTANCE = `${MULTI_PREFIX}-${Date.now()}-${multi}`;
|
|
process.env.NODE_ENV = NODE_ENV;
|
|
|
|
console.warn(' NODE_ENV', process.env.NODE_ENV);
|
|
console.warn(' NODE_APP_INSTANCE', process.env.NODE_APP_INSTANCE);
|
|
const electronApp = await _electron.launch({
|
|
args: [join(getAppRootPath(), 'ts', 'mains', 'main_node.js')],
|
|
});
|
|
return electronApp;
|
|
};
|
|
|
|
export const openAppAndWait = async (multi: string) => {
|
|
const electronApp = await openElectronAppOnly(multi);
|
|
// Get the first window that the app opens, wait if necessary.
|
|
const window = await electronApp.firstWindow();
|
|
|
|
// await window.reload();
|
|
return window;
|
|
};
|