mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-09 01:31:46 +00:00
43 lines
1.0 KiB
JavaScript
43 lines
1.0 KiB
JavaScript
import path from 'node:path';
|
|
import process from 'node:process';
|
|
|
|
import { test, expect, _electron as electron } from '@playwright/test';
|
|
|
|
process.env.NODE_ENV = 'test';
|
|
|
|
const appPath = path.resolve(import.meta.dirname, '..');
|
|
|
|
test('Pear Desktop 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.\u0079\u006f\u0075\u0074\u0075\u0062\u0065.com/save']",
|
|
);
|
|
if (consentForm) {
|
|
await consentForm.click('button');
|
|
}
|
|
|
|
// const title = await window.title();
|
|
// expect(title.replaceAll(/\s/g, ' ')).toEqual('Pear Desktop');
|
|
|
|
const url = window.url();
|
|
expect(
|
|
url.startsWith(
|
|
'https://music.\u0079\u006f\u0075\u0074\u0075\u0062\u0065.com',
|
|
),
|
|
).toBe(true);
|
|
|
|
await app.close();
|
|
});
|