graph-explorer
Version:
Graph Explorer can be used to explore and RDF graphs in SPARQL endpoints or on the web.
29 lines (26 loc) • 694 B
text/typescript
import { defineConfig, devices } from "@playwright/test";
const PORT = 10444;
const baseURL = `http://localhost:${PORT}`;
export default defineConfig({
testDir: "./tests/e2e",
// the demo data is deterministic, so failures are real
retries: process.env.CI ? 1 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI ? "list" : "list",
use: {
baseURL,
trace: "on-first-retry",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"], viewport: { width: 1280, height: 720 } },
},
],
webServer: {
command: "npm run demo",
url: baseURL,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
});