github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/integration/testdata/TestKarmaIntegration/src/frontend/Component.js (about)

     1  sap.ui.define([
     2     'sap/ui/core/UIComponent',
     3     'sap/ui/model/json/JSONModel',
     4     'sap/ui/model/resource/ResourceModel'
     5  ], function (UIComponent, JSONModel, ResourceModel) {
     6     'use strict';
     7     return UIComponent.extend('sap.ui.piper.Component', {
     8              metadata : {
     9  		rootView: 'sap.ui.piper.view.App'
    10  	},
    11        init : function () {
    12           // call the init function of the parent
    13           UIComponent.prototype.init.apply(this, arguments);
    14        }
    15     });
    16  });