UNPKG

rsshub

Version:
10 lines (8 loc) 269 B
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(); }); });