2025-06-21 14:28:57 +03:00
|
|
|
import { test, expect, _electron as electron, type ElectronApplication } from '@playwright/test';
|
2025-06-21 14:23:47 +03:00
|
|
|
import { join } from 'path';
|
|
|
|
|
|
2025-06-21 14:28:57 +03:00
|
|
|
let app: ElectronApplication;
|
|
|
|
|
|
|
|
|
|
test.beforeAll(async () => {
|
|
|
|
|
const distPath = join(__dirname, '../../desktop/dist/main.cjs');
|
2025-06-22 12:18:20 +03:00
|
|
|
console.log("Dir", join(__dirname, 'traces'));
|
|
|
|
|
app = await electron.launch({
|
|
|
|
|
args: [ distPath ]
|
|
|
|
|
});
|
2025-06-21 14:28:57 +03:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
test.afterAll(async () => {
|
2025-06-22 12:18:20 +03:00
|
|
|
await app.close();
|
2025-06-21 14:28:57 +03:00
|
|
|
});
|
|
|
|
|
|
2025-06-22 12:18:20 +03:00
|
|
|
test('First setup', async () => {
|
2025-06-21 14:23:47 +03:00
|
|
|
// Get the main window
|
2025-06-22 12:18:20 +03:00
|
|
|
const setupWindow = await app.firstWindow();
|
|
|
|
|
await expect(setupWindow).toHaveTitle("Setup");
|
|
|
|
|
await expect(setupWindow.locator('h1')).toHaveText("Trilium Notes setup");
|
|
|
|
|
await setupWindow.locator(`input[type="radio"]`).first().click();
|
|
|
|
|
|
|
|
|
|
// Wait for the finish.
|
|
|
|
|
const newWindowPromise = app.waitForEvent('window');
|
|
|
|
|
await setupWindow.locator(`button[type="submit"]`, { hasText: "Next" }).click();
|
|
|
|
|
|
|
|
|
|
const mainWindow = await newWindowPromise;
|
|
|
|
|
await expect(mainWindow).toHaveTitle("Trilium Notes");
|
2025-06-21 14:23:47 +03:00
|
|
|
});
|