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