Change exposed PropertyGroupType enum from int to string values

This commit is contained in:
Ronald Barendse
2021-09-07 15:59:26 +02:00
parent 8ce4993cdc
commit 02310cb3ec
16 changed files with 29 additions and 29 deletions

View File

@@ -19,14 +19,14 @@ describe('contentTypeHelper tests', function () {
describe('Group type', function () {
it('should return the group type', function () {
var groupType = contentTypeHelper.TYPE_GROUP;
expect(groupType).toBe(0);
expect(groupType).toBe('Group');
});
});
describe('Tab type', function () {
it('should return the tab type', function () {
var tabType = contentTypeHelper.TYPE_TAB;
expect(tabType).toBe(1);
expect(tabType).toBe('Tab');
});
});