mirror of
https://github.com/videojs/video.js.git
synced 2024-12-12 11:15:04 +02:00
9 lines
224 B
JavaScript
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');
|
|
});
|