This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/frontend/test/spec/test.utils.js
T
Yuri Kuznetsov 99195313c5 add frontend
2014-04-11 11:44:02 +03:00

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