@sap-ux/ui5-test-writer 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/ui5-test-writer",
|
|
3
3
|
"description": "SAP UI5 tests writer",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.6.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"i18next": "20.6.1",
|
|
25
25
|
"mem-fs": "2.1.0",
|
|
26
26
|
"mem-fs-editor": "9.4.0",
|
|
27
|
-
"@sap-ux/ui5-application-writer": "1.
|
|
27
|
+
"@sap-ux/ui5-application-writer": "1.3.0",
|
|
28
28
|
"@sap-ux/logger": "0.6.0"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@types/mem-fs": "1.1.2",
|
|
34
34
|
"@types/mem-fs-editor": "7.0.1",
|
|
35
35
|
"fs-extra": "10.0.0",
|
|
36
|
-
"@sap-ux/project-access": "1.29.
|
|
36
|
+
"@sap-ux/project-access": "1.29.12"
|
|
37
37
|
},
|
|
38
38
|
"engines": {
|
|
39
39
|
"node": ">=18.x"
|
|
@@ -3,8 +3,8 @@ QUnit.config.autostart = false;
|
|
|
3
3
|
|
|
4
4
|
// import all your QUnit tests here
|
|
5
5
|
void Promise.all([
|
|
6
|
-
import("sap/ui/core/Core"), // Required to wait until Core has booted to start the QUnit tests
|
|
6
|
+
import("sap/ui/core/Core"), // Required to wait until Core has booted to start the QUnit tests
|
|
7
7
|
import("unit/controller/<%= viewName %>Page.controller")
|
|
8
|
-
]).then(([{
|
|
8
|
+
]).then(([{default: Core}]) => Core.ready()).then(() => {
|
|
9
9
|
QUnit.start();
|
|
10
10
|
});
|