Skip to content

Commit b356bcf

Browse files
Merge branch 'main' into yarn-lock-changes
2 parents f3c1d05 + ae0079d commit b356bcf

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

apps/api/v2/src/platform/calendars/controllers/calendars.controller.e2e-spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,10 @@ import { UsersModule } from "@/modules/users/users.module";
4747

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

50-
describe("Platform Calendars Endpoints", () => {
50+
// biome-ignore lint/style/noProcessEnv: Need to check env availability before test setup
51+
const describeCalendars = process.env.GOOGLE_API_CREDENTIALS ? describe : describe.skip;
52+
53+
describeCalendars("Platform Calendars Endpoints", () => {
5154
let app: INestApplication;
5255

5356
let oAuthClient: PlatformOAuthClient;

apps/api/v2/src/platform/gcal/gcal.controller.e2e-spec.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@ import { UsersModule } from "@/modules/users/users.module";
2020

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

23-
describe("Platform Gcal Endpoints", () => {
23+
// biome-ignore lint/style/noProcessEnv: Need to check env availability before test setup
24+
const describePlatformGcal = process.env.GOOGLE_API_CREDENTIALS ? describe : describe.skip;
25+
26+
describePlatformGcal("Platform Gcal Endpoints", () => {
2427
let app: INestApplication;
2528

2629
let oAuthClient: PlatformOAuthClient;

apps/web/playwright/signup.e2e.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { APP_NAME, IS_MAILHOG_ENABLED } from "@calcom/lib/constants";
44
import prisma from "@calcom/prisma";
55
import type { Page } from "@playwright/test";
66
import { expect } from "@playwright/test";
7+
import { IS_GOOGLE_LOGIN_ENABLED } from "../server/lib/constants";
78
import { test } from "./lib/fixtures";
89
import { getEmailsReceivedByUser } from "./lib/testUtils";
910

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

2930
test("Continue with google button must exist / work", async ({ page }) => {
31+
// eslint-disable-next-line playwright/no-skipped-test
32+
test.skip(!IS_GOOGLE_LOGIN_ENABLED, "It should only run if Google Login is installed");
3033
const button = page.getByTestId("continue-with-google-button");
3134
await expect(button).toBeVisible();
3235
await expect(button).toBeEnabled();

packages/app-store/horizon-workrooms/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"url": "https://forwork.meta.com/de/en/horizon-workrooms/",
88
"variant": "conferencing",
99
"categories": ["conferencing"],
10-
"publisher": "Cal.diy, Inc",
10+
"publisher": "Cal.com, Inc",
1111
"email": "support@cal.com",
1212
"appData": {
1313
"location": {

packages/ui/components/credits/credits.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe("Tests for Credits component", () => {
1616
test("Should render credits section with links", () => {
1717
render(<Credits />);
1818

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

0 commit comments

Comments
 (0)