⚝
One Hat Cyber Team
⚝
Your IP:
216.73.217.4
Server IP:
41.128.143.86
Server:
Linux host.raqmix.cloud 6.8.0-1025-azure #30~22.04.1-Ubuntu SMP Wed Mar 12 15:28:20 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.3.23
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
grafana
/
public
/
app
/
plugins
/
panel
/
news
/
Edit File: rss.test.ts
import fs from 'fs'; import { parseRSSFeed } from './rss'; describe('RSS feed parser', () => { it('should successfully parse an rss feed', async () => { const rssFile = fs.readFileSync(`${__dirname}/fixtures/rss.xml`, 'utf8'); const parsedFeed = parseRSSFeed(rssFile); expect(parsedFeed.items).toHaveLength(1); expect(parsedFeed.items[0].title).toBe('A fake item'); expect(parsedFeed.items[0].link).toBe('https://www.example.net/2022/02/10/something-fake/'); expect(parsedFeed.items[0].pubDate).toBe('Thu, 10 Feb 2022 16:00:17 +0000'); expect(parsedFeed.items[0].content).toBe('A description of a fake blog post'); }); });
Simpan