Merge pull request #16422 from Snuffleupagus/getFontSubstitution-css-tests

Check the `css` property in the `getFontSubstitution` unit-tests
This commit is contained in:
Jonas Jenwald 2023-05-15 10:09:17 +02:00 committed by GitHub
commit c20c1b3362
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,6 +39,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+)$/);
}); });
it("should substitute an unknown bold font", () => { it("should substitute an unknown bold font", () => {
@ -60,6 +61,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+)$/);
}); });
it("should substitute an unknown italic font", () => { it("should substitute an unknown italic font", () => {
@ -81,6 +83,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+)$/);
}); });
it("should substitute an unknown bold italic font", () => { it("should substitute an unknown bold italic font", () => {
@ -102,6 +105,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+)$/);
}); });
it("should substitute an unknown font but with a standard font", () => { it("should substitute an unknown font but with a standard font", () => {
@ -131,6 +135,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute an unknown font but with a standard italic font", () => { it("should substitute an unknown font but with a standard italic font", () => {
@ -162,6 +167,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute an unknown font but with a standard bold font", () => { it("should substitute an unknown font but with a standard bold font", () => {
@ -192,6 +198,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute an unknown font but with a standard bold italic font", () => { it("should substitute an unknown font but with a standard bold italic font", () => {
@ -225,6 +232,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute Calibri", () => { it("should substitute Calibri", () => {
@ -254,6 +262,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute Calibri-Bold", () => { it("should substitute Calibri-Bold", () => {
@ -285,6 +294,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute Arial Black", () => { it("should substitute Arial Black", () => {
@ -316,6 +326,7 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
it("should substitute Arial Black Bold", () => { it("should substitute Arial Black Bold", () => {
@ -347,5 +358,6 @@ describe("getFontSubstitution", function () {
}, },
}) })
); );
expect(fontSubstitution.css).toMatch(/^g_d(\d+)_sf_f(\d+),sans-serif$/);
}); });
}); });