gradio/.config/playwright.config.js

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

10 lines
174 B
JavaScript
Raw Permalink Normal View History

export default {
use: {
screenshot: "only-on-failure",
trace: "retain-on-failure"
},
testMatch: /.*.spec.ts/,
testDir: "..",
globalSetup: "./playwright-setup.js"
};