mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-02 10:08:02 +08:00
8 lines
188 B
JavaScript
8 lines
188 B
JavaScript
const md5 = require('../../lib/utils/md5');
|
|
|
|
describe('md5', () => {
|
|
it('md5 RSSHub', async () => {
|
|
expect(md5('RSSHub')).toBe('3187d745ec5983413e4f0dce3900d92d');
|
|
});
|
|
});
|