From 28d668ff389b8ae6f72338d99c13e4b64dcbe497 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Fri, 11 Feb 2022 13:05:12 -0700 Subject: [PATCH] Eslint fix to test deploy (#1818) * Eslint fix to test deploy * E2E fixes --- apps/docs/next.config.js | 11 ++++++----- apps/web/playwright.config.ts | 2 +- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/apps/docs/next.config.js b/apps/docs/next.config.js index ee8485ce..2d62e7d6 100644 --- a/apps/docs/next.config.js +++ b/apps/docs/next.config.js @@ -1,6 +1,7 @@ -const withNextra = require('nextra')({ - theme: 'nextra-theme-docs', - themeConfig: './theme.config.js', +/* eslint-disable @typescript-eslint/no-var-requires */ +const withNextra = require("nextra")({ + theme: "nextra-theme-docs", + themeConfig: "./theme.config.js", unstable_staticImage: true, -}) -module.exports = withNextra() +}); +module.exports = withNextra(); diff --git a/apps/web/playwright.config.ts b/apps/web/playwright.config.ts index c28a9cf7..b1342fbe 100644 --- a/apps/web/playwright.config.ts +++ b/apps/web/playwright.config.ts @@ -25,7 +25,7 @@ const config: PlaywrightTestConfig = { globalSetup: require.resolve("./playwright/lib/globalSetup"), outputDir: "playwright/results", webServer: { - command: "yarn start", + command: "yarn start --scope=@calcom/web", port: 3000, timeout: 60_000, reuseExistingServer: !process.env.CI,