mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-04-29 02:50:34 -05:00
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.
13 lines
322 B
TypeScript
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,
|
|
};
|