gradio/.config/playwright.config.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
307 B
JavaScript
Raw Normal View History

export default {
use: {
screenshot: "only-on-failure",
trace: "retain-on-failure",
permissions: ["clipboard-read", "clipboard-write"],
bypassCSP: true,
launchOptions: {
args: ["--disable-web-security"]
}
},
testMatch: /.*.spec.ts/,
testDir: "..",
globalSetup: "./playwright-setup.js"
};