Files
RSSHub/lib/utils/rss-parser.test.ts
T
2024-03-27 16:18:37 +08:00

10 lines
269 B
TypeScript

import { describe, expect, it } from 'vitest';
import parser from '@/utils/rss-parser';
describe('rss-parser', () => {
it('rss', async () => {
const result = await parser.parseURL('http://rsshub.test/rss');
expect(result).toBeTruthy();
});
});