mirror of
https://github.com/DIYgod/RSSHub.git
synced 2025-12-04 02:58:08 +08:00
8 lines
243 B
JavaScript
8 lines
243 B
JavaScript
const utils = require('../../lib/utils/common-utils');
|
|
|
|
describe('common-utils', () => {
|
|
it('toTitleCase', async () => {
|
|
expect(utils.toTitleCase('RSSHub IS AS aweSOme aS henry')).toBe('Rsshub Is As Awesome As Henry');
|
|
});
|
|
});
|