UNPKG

save-server

Version:

A powerful ShareX image and URL server, with support for multiple users.

16 lines (14 loc) 303 B
const { defineConfig } = require("@playwright/test"); module.exports = defineConfig({ testDir: "./tests", timeout: 30000, workers: 1, fullyParallel: false, use: { baseURL: "http://localhost:4837", headless: true }, projects: [ { name: "chromium", use: { browserName: "chromium" } } ] });