Skip to content

Commit 147aa12

Browse files
committed
test: Fix E2E tests
1 parent 4729d36 commit 147aa12

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

test/e2e/specs/check-sync.spec.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ describe("check sync", () => {
1515
const pageTitle = await getReadmePageTitle();
1616

1717
expect(pageTitle).toEqual(
18-
expect.stringContaining("[Cross] Markdown Confluence Sync"),
18+
expect.stringContaining(
19+
"[Cross] [Markdown Confluence Sync] Github action",
20+
),
1921
);
2022
});
2123

@@ -31,7 +33,9 @@ describe("check sync", () => {
3133
const pageTitle = await getChangelogPageTitle();
3234

3335
expect(pageTitle).toEqual(
34-
expect.stringContaining("[Cross] [Markdown Confluence Sync] Releases"),
36+
expect.stringContaining(
37+
"[Cross] [Markdown Confluence Sync] [Github action] Releases",
38+
),
3539
);
3640
});
3741

0 commit comments

Comments
 (0)