Skip to content

Commit

Permalink
OpenUI5 Documentation Update 14.01.2025
Browse files Browse the repository at this point in the history
  • Loading branch information
openui5bot committed Jan 14, 2025
1 parent aaf3969 commit bdf291d
Show file tree
Hide file tree
Showing 13 changed files with 76 additions and 529 deletions.
2 changes: 0 additions & 2 deletions docs/0index.md
Original file line number Diff line number Diff line change
Expand Up @@ -730,8 +730,6 @@ OpenUI5 Version for the OpenUI5 Demo Kit
- [Developing Controls](Developing_Controls_8dcab00.md)
- [Development Conventions and Guidelines](Development_Conventions_and_Guidelines_753b326.md)
- [JavaScript Coding Guidelines](JavaScript_Coding_Guidelines_eded636.md)
- [JavaScript Namespaces](JavaScript_Namespaces_5a978fe.md)
- [Example for Defining a Class](Example_for_Defining_a_Class_f6fba4c.md)
- [TypeScript Guidelines](TypeScript_Guidelines_192397d.md)
- [OpenUI5 Control Development Guidelines](OpenUI5_Control_Development_Guidelines_4549da6.md)
- [Control Development Guidelines: Theming/CSS](Control_Development_Guidelines_Theming_CSS_5e08ff9.md)
Expand Down
41 changes: 20 additions & 21 deletions docs/Concept_and_Basic_Setup_22f50c0.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,32 +95,31 @@ It also provides [Configuration of the OpenUI5 Runtime](Configuration_of_the_Ope
```

sap.ui.define(function() {
sap.ui.define(function () {
"use strict";

return {
name: "QUnit test suite for NAMESPACE",
defaults: {
page: "ui5://test-resources/<NAMESPACE>/Test.qunit.html?testsuite={suite}&test={name}",
qunit: {
version: 2
},
sinon: {
version: 4
},
ui5: {
theme: "sap_horizon"
},
loader: {
paths: {
"<NAMESPACE>": "../"
}
}
},
tests: {}
name: "QUnit test suite for NAMESPACE",
defaults: {
page: "ui5://test-resources/<NAMESPACE>/Test.qunit.html?testsuite={suite}&test={name}",
qunit: {
version: 2,
},
sinon: {
version: 4,
},
ui5: {
theme: "sap_horizon",
},
loader: {
paths: {
"<NAMESPACE>": "../",
},
},
},
tests: {},
};
});

```
The `tests` object is empty for now. For more information on how to add a defined test module to an existing test suite, see [Adding a QUnit Test Module to a Test Suite](Creating_a_QUnit_Test_7080029.md#loio708002929ea548fd9433954a9275eb5f__section_hp4_xhn_vcc).
Expand Down
5 changes: 0 additions & 5 deletions docs/Creating_Control_and_Class_Modules_c78c07c.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,3 @@ sap.ui.define(["sap/ui/base/Object"], function(BaseObject) {
});
```

**Related Information**


[Example for Defining a Class](Example_for_Defining_a_Class_f6fba4c.md "Full example of a class definition, including JSDoc")

127 changes: 0 additions & 127 deletions docs/Example_for_Defining_a_Class_f6fba4c.md

This file was deleted.

Loading

0 comments on commit bdf291d

Please sign in to comment.