ui5-test-runner 5.7.0 → 5.7.1
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ui5-test-runner",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.1",
|
|
4
4
|
"description": "Standalone test runner for UI5",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"commander": "^12.1.0",
|
|
48
48
|
"ps-tree": "^1.2.0",
|
|
49
49
|
"punybind": "^1.2.1",
|
|
50
|
-
"punyexpr": "
|
|
50
|
+
"punyexpr": "1.0.4",
|
|
51
51
|
"reserve": "2.2.0"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
@@ -7,12 +7,14 @@ module.exports = [{
|
|
|
7
7
|
url: 'basic/index.html'
|
|
8
8
|
}, {
|
|
9
9
|
label: 'Loads a UI5 example',
|
|
10
|
+
for: capabilities => !capabilities.modules.includes('jsdom'), // does not work anymore on JSDOM
|
|
10
11
|
url: 'basic/ui5.html',
|
|
11
12
|
endpoint: ({ body }) => {
|
|
12
13
|
assert.strictEqual(body['sap.m.Button'], true)
|
|
13
14
|
}
|
|
14
15
|
}, {
|
|
15
16
|
label: 'Loads a UI5 inside an iframe',
|
|
17
|
+
for: capabilities => !capabilities.modules.includes('jsdom'), // does not work anymore on JSDOM
|
|
16
18
|
url: 'basic/iframe.html',
|
|
17
19
|
endpoint: ({ body }) => {
|
|
18
20
|
assert.strictEqual(body['sap.m.Button'], true)
|