cal/__checks__/calcom-dashboard.check.js

35 lines
1.2 KiB
JavaScript
Raw Normal View History

/**
* This is a Playwright script Checkly generated for you based on your Vercel project.
* To learn more about Browser checks and Playwright visit: https://www.checklyhq.com/docs/browser-checks
*/
// Create a Chromium browser
2022-09-08 19:04:32 -03:00
const { chromium } = require("playwright");
// Checkly supports top level await, but we wrap your code in an async function so you can run it locally too.
2022-09-08 19:04:32 -03:00
async function run() {
const browser = await chromium.launch();
const page = await browser.newPage();
// If available, we set the target URL to a preview deployment URL provided by the ENVIRONMENT_URL created by Vercel.
// Otherwise, we use the Production URL.
2022-09-08 19:04:32 -03:00
const targetUrl = process.env.ENVIRONMENT_URL || "https://app.cal.com";
// We visit the page. This waits for the "load" event by default.
2022-09-08 19:04:32 -03:00
const response = await page.goto(targetUrl);
// If the page doesn't return a successful response code, we fail the check
if (response.status() > 399) {
2022-09-08 19:04:32 -03:00
throw new Error(`Failed with response code ${response.status()}`);
}
// We snap a screenshot.
2022-09-08 19:04:32 -03:00
await page.screenshot({ path: "screenshot.jpg" });
// We close the page and browser. This is needed for collecting accurate web vitals.
2022-09-08 19:04:32 -03:00
await page.close();
await browser.close();
}
2022-09-08 19:04:32 -03:00
run();