diff --git a/packages/ui/src/CountryDisplay/__test__/CountryDisplay.snapshot.test.tsx b/packages/ui/src/CountryDisplay/__test__/CountryDisplay.snapshot.test.tsx
new file mode 100644
index 000000000..1892f40d5
--- /dev/null
+++ b/packages/ui/src/CountryDisplay/__test__/CountryDisplay.snapshot.test.tsx
@@ -0,0 +1,72 @@
+import { render } from "@testing-library/react";
+import { describe, expect, test } from "vitest";
+
+import { Country } from "../../CountryDisplay";
+
+describe("Country Component Snapshots", () => {
+ test("renders basic country with default flag", () => {
+ const { container } = render();
+
+ expect(container).toMatchSnapshot();
+ });
+
+ test("renders with different flag styles and positions", () => {
+ const { container } = render(
+ ,
+ );
+
+ expect(container).toMatchSnapshot();
+ });
+
+ test("renders without flag when showFlag is false", () => {
+ const { container } = render();
+
+ expect(container).toMatchSnapshot();
+ });
+
+ test("renders with custom flagsPath image source", () => {
+ const { container } = render(
+ `https://static.example.com/flags/${code}.svg`}
+ />,
+ );
+
+ expect(container).toMatchSnapshot();
+ });
+
+ test("renders with localized labels", () => {
+ const mockLocales = {
+ fr: {
+ DE: "Allemagne",
+ },
+ };
+
+ const { container } = render(
+ ,
+ );
+
+ expect(container).toMatchSnapshot();
+ });
+
+ test("renders using custom renderOption prop", () => {
+ const { container } = render(
+ (
+
+ {code}: {label}
+
+ )}
+ />,
+ );
+
+ expect(container).toMatchSnapshot();
+ });
+
+ test("renders fallback hyphen when code is missing or empty", () => {
+ const { container } = render();
+
+ expect(container).toMatchSnapshot();
+ });
+});
diff --git a/packages/ui/src/CountryDisplay/__test__/__snapshots__/CountryDisplay.snapshot.test.tsx.snap b/packages/ui/src/CountryDisplay/__test__/__snapshots__/CountryDisplay.snapshot.test.tsx.snap
new file mode 100644
index 000000000..457527f02
--- /dev/null
+++ b/packages/ui/src/CountryDisplay/__test__/__snapshots__/CountryDisplay.snapshot.test.tsx.snap
@@ -0,0 +1,156 @@
+// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
+
+exports[`Country Component Snapshots > renders basic country with default flag 1`] = `
+
+`;
+
+exports[`Country Component Snapshots > renders fallback hyphen when code is missing or empty 1`] = `
+
+`;
+
+exports[`Country Component Snapshots > renders using custom renderOption prop 1`] = `
+
+
+
+
+
+ JP
+
+ :
+ Japan
+
+
+
+
+`;
+
+exports[`Country Component Snapshots > renders with custom flagsPath image source 1`] = `
+
+
+
+

+
+ France
+
+
+
+
+`;
+
+exports[`Country Component Snapshots > renders with different flag styles and positions 1`] = `
+
+
+
+
+
+ United States
+
+
+
+
+`;
+
+exports[`Country Component Snapshots > renders with localized labels 1`] = `
+
+`;
+
+exports[`Country Component Snapshots > renders without flag when showFlag is false 1`] = `
+
+
+
+
+ United Kingdom
+
+
+
+
+`;