File size: 270 Bytes
bf48b89
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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();
    });
});