Eslint fix to test deploy (#1818)

* Eslint fix to test deploy

* E2E fixes
This commit is contained in:
Omar López 2022-02-11 13:05:12 -07:00 committed by GitHub
parent 92aaed5cc5
commit 28d668ff38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 6 deletions

View File

@ -1,6 +1,7 @@
const withNextra = require('nextra')({ /* eslint-disable @typescript-eslint/no-var-requires */
theme: 'nextra-theme-docs', const withNextra = require("nextra")({
themeConfig: './theme.config.js', theme: "nextra-theme-docs",
themeConfig: "./theme.config.js",
unstable_staticImage: true, unstable_staticImage: true,
}) });
module.exports = withNextra() module.exports = withNextra();

View File

@ -25,7 +25,7 @@ const config: PlaywrightTestConfig = {
globalSetup: require.resolve("./playwright/lib/globalSetup"), globalSetup: require.resolve("./playwright/lib/globalSetup"),
outputDir: "playwright/results", outputDir: "playwright/results",
webServer: { webServer: {
command: "yarn start", command: "yarn start --scope=@calcom/web",
port: 3000, port: 3000,
timeout: 60_000, timeout: 60_000,
reuseExistingServer: !process.env.CI, reuseExistingServer: !process.env.CI,