Run lint and prettier
CI Pipeline / test (20) (pull_request) Failing after 8m5s
CI Pipeline / test (18) (pull_request) Failing after 8m36s
CI Pipeline / e2e (chromium) (pull_request) Successful in 2m32s
CI Pipeline / e2e (webkit) (pull_request) Successful in 3m40s
CI Pipeline / e2e (firefox) (pull_request) Successful in 5m43s
CI Pipeline / performance (pull_request) Failing after 3m18s
CI Pipeline / visual-regression (pull_request) Failing after 3m20s
CI Pipeline / lint (pull_request) Successful in 1m7s
CI Pipeline / storybook (pull_request) Successful in 1m32s
CI Pipeline / build (pull_request) Successful in 1m22s
CI Pipeline / test (20) (pull_request) Failing after 8m5s
CI Pipeline / test (18) (pull_request) Failing after 8m36s
CI Pipeline / e2e (chromium) (pull_request) Successful in 2m32s
CI Pipeline / e2e (webkit) (pull_request) Successful in 3m40s
CI Pipeline / e2e (firefox) (pull_request) Successful in 5m43s
CI Pipeline / performance (pull_request) Failing after 3m18s
CI Pipeline / visual-regression (pull_request) Failing after 3m20s
CI Pipeline / lint (pull_request) Successful in 1m7s
CI Pipeline / storybook (pull_request) Successful in 1m32s
CI Pipeline / build (pull_request) Successful in 1m22s
This commit is contained in:
@@ -22,7 +22,7 @@ describe("Content Processing Integration", () => {
|
||||
const result = getBlogPostFiles();
|
||||
|
||||
expect(fs.readdirSync).toHaveBeenCalledWith(
|
||||
path.join(process.cwd(), "content/blog")
|
||||
path.join(process.cwd(), "content/blog"),
|
||||
);
|
||||
expect(result).toEqual(["post1.md", "post2.md", "post3.md"]);
|
||||
});
|
||||
@@ -89,7 +89,7 @@ Content with **bold** and *italic* text.`;
|
||||
const result = markdownToHtml(markdown);
|
||||
|
||||
expect(result).toContain(
|
||||
"<h1>Title with Special Characters: & < > \" '</h1>"
|
||||
"<h1>Title with Special Characters: & < > \" '</h1>",
|
||||
);
|
||||
expect(result).toContain("<strong>bold</strong>");
|
||||
expect(result).toContain("<em>italic</em>");
|
||||
|
||||
Reference in New Issue
Block a user