Some checks failed
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
49 lines
1.4 KiB
TypeScript
49 lines
1.4 KiB
TypeScript
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
|
|
import { TestError } from '../Types';
|
|
|
|
/**
|
|
* Finds the project root by searching upwards for a marker file.
|
|
* @param marker The file that identifies the project root (e.g., 'playwright.config.ts' or 'package.json').
|
|
* @returns The absolute path to the project root.
|
|
*/
|
|
function findProjectRoot(marker: string): string {
|
|
let dir = __dirname;
|
|
while (!fs.existsSync(path.join(dir, marker))) {
|
|
const parentDir = path.dirname(dir);
|
|
if (parentDir === dir) {
|
|
throw new TestError('Could not find project root');
|
|
}
|
|
dir = parentDir;
|
|
}
|
|
return dir;
|
|
}
|
|
|
|
/**
|
|
* Finds a folder root by searching upwards for a marker folder named 'packages'.
|
|
* @returns The absolute path to the folder root.
|
|
*/
|
|
export function findPackagesRoot(marker: string): string {
|
|
let dir = __dirname;
|
|
while (!fs.existsSync(path.join(dir, marker))) {
|
|
const parentDir = path.dirname(dir);
|
|
if (parentDir === dir) {
|
|
throw new TestError('Could not find packages root');
|
|
}
|
|
dir = parentDir;
|
|
}
|
|
return dir;
|
|
}
|
|
|
|
const playwrightRoot = findProjectRoot('playwright.config.ts');
|
|
|
|
/**
|
|
* Resolves a path relative to the Playwright project root.
|
|
* @param pathSegments Segments of the path starting from the project root.
|
|
* @returns An absolute path to the file or directory.
|
|
*/
|
|
export function resolveFromRoot(...pathSegments: string[]): string {
|
|
return path.join(playwrightRoot, ...pathSegments);
|
|
}
|