mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
var Espo = Espo || {};
|
|
|
|
describe("Utils", function () {
|
|
|
|
beforeEach(function () {
|
|
});
|
|
|
|
it('#upperCaseFirst should make first letter upercase', function () {
|
|
expect(Espo.Utils.upperCaseFirst('someTest')).toBe('SomeTest');
|
|
});
|
|
|
|
});
|