playwright.uncapped.config.ts 367 B

12345678910111213
  1. import config from "./playwright.config"
  2. export default {
  3. ...config,
  4. outputDir: "../test-results/performance-uncapped",
  5. reporter: [["html", { outputFolder: "../playwright-report/performance-uncapped", open: "never" }], ["line"]],
  6. use: {
  7. ...config.use,
  8. launchOptions: {
  9. args: ["--disable-frame-rate-limit", "--disable-gpu-vsync"],
  10. },
  11. },
  12. }