import path from 'node:path'; import process from 'node:process'; import { _electron as electron } from 'playwright'; import { test, expect } from '@playwright/test'; process.env.NODE_ENV = 'test'; const appPath = path.resolve(import.meta.dirname, '..'); test('YouTube Music App - With default settings, app is launched and visible', async () => { const app = await electron.launch({ cwd: appPath, args: [ appPath, '--no-sandbox', '--disable-gpu', '--whitelisted-ips=', '--disable-dev-shm-usage', ], }); const window = await app.firstWindow(); const consentForm = await window.$( "form[action='https://consent.youtube.com/save']", ); if (consentForm) { await consentForm.click('button'); } // const title = await window.title(); // expect(title.replaceAll(/\s/g, ' ')).toEqual('YouTube Music'); const url = window.url(); expect(url.startsWith('https://music.youtube.com')).toBe(true); await app.close(); });