Ronald 9d21736e9f
Add UI copyright headers files (#16614)
* Add copyright headers to UI files

* Ensure copywrite file ignores external libs
2023-03-14 09:18:55 -04:00

36 lines
761 B
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { module, test } from 'qunit';
import ucfirst from 'consul-ui/utils/ucfirst';
module('Unit | Utils | ucfirst', function () {
test('it returns the first letter in uppercase', function (assert) {
assert.expect(4);
[
{
test: 'hello world',
expected: 'Hello world',
},
{
test: 'hello World',
expected: 'Hello World',
},
{
test: 'HELLO WORLD',
expected: 'HELLO WORLD',
},
{
test: 'hELLO WORLD',
expected: 'HELLO WORLD',
},
].forEach(function (item) {
const actual = ucfirst(item.test);
assert.equal(actual, item.expected);
});
});
});