1
0
mirror of https://github.com/videojs/video.js.git synced 2024-12-12 11:15:04 +02:00
video.js/test/unit/utils/to-title-case.test.js

9 lines
224 B
JavaScript

import toTitleCase from '../../../src/js/utils/to-title-case.js';
q.module('to-title-case');
test('should make a string start with an uppercase letter', function(){
var foo = toTitleCase('bar');
ok(foo === 'Bar');
});