mirror of
https://github.com/videojs/video.js.git
synced 2024-12-12 11:15:04 +02:00
7 lines
196 B
JavaScript
7 lines
196 B
JavaScript
|
import toTitleCase from '../../../src/js/utils/to-title-case.js';
|
||
|
|
||
|
test('should make a string start with an uppercase letter', function(){
|
||
|
var foo = toTitleCase('bar');
|
||
|
ok(foo === 'Bar');
|
||
|
});
|