Skip to content

Commit dd1ae52

Browse files
committed
test: refresh video and Slack fixtures
1 parent 3a10533 commit dd1ae52

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

apps/web/__tests__/unit/media-processing-workflows.test.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,12 @@ const payload = {
7474
bucketId: null,
7575
loomVideoId: "loom-video",
7676
};
77-
const video = { id: "video", createdAt: new Date(), updatedAt: new Date() };
77+
const video = {
78+
id: "video",
79+
source: { type: "webMP4" },
80+
createdAt: new Date(),
81+
updatedAt: new Date(),
82+
};
7883
const metadata = { duration: 30, width: 1920, height: 1080, fps: 30 };
7984
const pending = { phase: "processing", processingProgress: 25 };
8085

apps/web/__tests__/unit/slack-app-manifest.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe("Slack app manifest", () => {
3232

3333
expect(manifest.display_information).toMatchObject({
3434
description: "Use Cap directly inside Slack.",
35-
background_color: "#4785FF",
35+
background_color: "#1e60e6",
3636
});
3737
expect(manifest.features.unfurl_domains).toEqual(["cap.so", "cap.link"]);
3838
expect(manifest.oauth_config.scopes.bot).toEqual([

0 commit comments

Comments
 (0)