joplin/packages/app-desktop/integration-tests/util/createStartupArgs.ts

10 lines
259 B
TypeScript

const createStartupArgs = (profileDirectory: string) => {
// We need to run with --env dev to disable the single instance check.
return [
'main.js', '--env', 'dev', '--no-welcome', '--profile', profileDirectory,
];
};
export default createStartupArgs;