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
2016-08-12 13:51:31 -04:00

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');
});