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