-
Notifications
You must be signed in to change notification settings - Fork 1
/
Component.js
49 lines (44 loc) · 1.6 KB
/
Component.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
sap.ui.define(['sap/ui/core/UIComponent'],
function (UIComponent) {
"use strict";
var Component = UIComponent.extend("sap.m.tutorial.testing.01.Component", {
metadata: {
config: {
sample: {
iframe: "WebContent/test/testService.html",
stretch: true,
files: [
"WebContent/controller/App.controller.js",
"WebContent/controller/BaseController.js",
"WebContent/controller/Worklist.controller.js",
"WebContent/i18n/i18n.properties",
"WebContent/localService/mockdata/Posts.json",
"WebContent/localService/metadata.xml",
"WebContent/localService/mockserver.js",
"WebContent/model/formatter.js",
"WebContent/model/FlaggedType.js",
"WebContent/model/models.js",
"WebContent/test/testsuite.qunit.html",
"WebContent/test/integration/pages/Common.js",
"WebContent/test/integration/pages/Worklist.js",
"WebContent/test/integration/AllJourneys.js",
"WebContent/test/integration/opaTests.qunit.html",
"WebContent/test/integration/WorklistJourney.js",
"WebContent/test/unit/model/formatter.js",
"WebContent/test/unit/model/FlaggedType.js",
"WebContent/test/unit/model/models.js",
"WebContent/test/unit/allTests.js",
"WebContent/test/unit/unitTests.qunit.html",
"WebContent/test/test.html",
"WebContent/test/testService.html",
"WebContent/view/App.view.xml",
"WebContent/view/Worklist.view.xml",
"WebContent/Component.js",
"WebContent/manifest.json"
]
}
}
}
});
return Component;
});