mirror of
https://github.com/DIYgod/RSSHub.git
synced 2026-08-31 01:01:11 +08:00
10 lines
269 B
TypeScript
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();
|
|
});
|
|
});
|