Files
feeddeck/supabase/functions/_shared/feed/utils/index.ts
Rico Berger 9e59439226 [core] Add Tests for Sources (#98)
This commit adds tests for all available sources.

This commit also fixes the parsing of Atom feeds for the RSS source,
where the `dc:date` field must be used for the `publishedAt` field.
2023-12-12 18:50:29 +01:00

13 lines
322 B
TypeScript

import { getFavicon } from './getFavicon.ts';
import { uploadSourceIcon } from './uploadFile.ts';
import { assertEqualsItems, assertEqualsSource } from './test.ts';
export type { Favicon } from './getFavicon.ts';
export const feedutils = {
getFavicon,
uploadSourceIcon,
assertEqualsItems,
assertEqualsSource,
};