Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ import { UsersModule } from "@/modules/users/users.module";

const CLIENT_REDIRECT_URI = "http://localhost:5555";

describe("Platform Calendars Endpoints", () => {
// biome-ignore lint/style/noProcessEnv: Need to check env availability before test setup
const describeCalendars = process.env.GOOGLE_API_CREDENTIALS ? describe : describe.skip;

describeCalendars("Platform Calendars Endpoints", () => {
let app: INestApplication;

let oAuthClient: PlatformOAuthClient;
Expand Down
5 changes: 4 additions & 1 deletion apps/api/v2/src/platform/gcal/gcal.controller.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ import { UsersModule } from "@/modules/users/users.module";

const CLIENT_REDIRECT_URI = "http://localhost:5555";

describe("Platform Gcal Endpoints", () => {
// biome-ignore lint/style/noProcessEnv: Need to check env availability before test setup
const describePlatformGcal = process.env.GOOGLE_API_CREDENTIALS ? describe : describe.skip;

describePlatformGcal("Platform Gcal Endpoints", () => {
let app: INestApplication;

let oAuthClient: PlatformOAuthClient;
Expand Down
3 changes: 3 additions & 0 deletions apps/web/playwright/signup.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { APP_NAME, IS_MAILHOG_ENABLED } from "@calcom/lib/constants";
import prisma from "@calcom/prisma";
import type { Page } from "@playwright/test";
import { expect } from "@playwright/test";
import { IS_GOOGLE_LOGIN_ENABLED } from "../server/lib/constants";
import { test } from "./lib/fixtures";
import { getEmailsReceivedByUser } from "./lib/testUtils";

Expand All @@ -27,6 +28,8 @@ test.describe("Signup Main Page Test", async () => {
});

test("Continue with google button must exist / work", async ({ page }) => {
// eslint-disable-next-line playwright/no-skipped-test
test.skip(!IS_GOOGLE_LOGIN_ENABLED, "It should only run if Google Login is installed");
const button = page.getByTestId("continue-with-google-button");
await expect(button).toBeVisible();
await expect(button).toBeEnabled();
Expand Down
2 changes: 1 addition & 1 deletion packages/app-store/horizon-workrooms/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"url": "https://forwork.meta.com/de/en/horizon-workrooms/",
"variant": "conferencing",
"categories": ["conferencing"],
"publisher": "Cal.diy, Inc",
"publisher": "Cal.com, Inc",
"email": "support@cal.com",
"appData": {
"location": {
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/components/credits/credits.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("Tests for Credits component", () => {
test("Should render credits section with links", () => {
render(<Credits />);

const creditsLinkElement = screen.getByRole("link", { name: /Cal\.diy, Inc\./i });
const creditsLinkElement = screen.getByRole("link", { name: /Cal\.com, Inc\./i });
expect(creditsLinkElement).toBeInTheDocument();
expect(creditsLinkElement).toHaveAttribute("href", "https://go.cal.com/credits");

Expand Down
Loading