opaTests.qunit.js 650 B

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