| 123456789101112131415161718192021 |
- // We cannot provide stable mock data out of the template.
- // If you introduce mock data, by adding .json files in your webapp/localService/mockdata folder you have to provide the following minimum data:
- // * At least 3 Objects in the list
- // * All 3 Objects have at least one LineItems
- // NavigationJourney is separated so that each test page runs fast enough (<30s)
- sap.ui.define([
- "sap/ui/test/Opa5",
- "./arrangements/Startup",
- "./MasterJourney",
- "./NotFoundJourney"
- ], function (Opa5, Startup) {
- "use strict";
- Opa5.extendConfig({
- arrangements: new Startup(),
- viewNamespace: "sap.ui.demo.orderbrowser.view.",
- autoWait: true
- });
- });
|