mirror of
https://github.com/outline/outline.git
synced 2026-04-22 17:59:13 -05:00
587f062677
* First pass * Mooarrr * lint * snapshots
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import { generateAvatarUrl } from "./avatars";
|
|
|
|
it("should return clearbit url if available", async () => {
|
|
const url = await generateAvatarUrl({
|
|
id: "google",
|
|
domain: "google.com",
|
|
});
|
|
expect(url).toBe("https://logo.clearbit.com/google.com");
|
|
});
|