-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Get QUnit tests not included in a module
* ci: Update actions * fix: Get QUnit tests not included in a module * test: Include more test scenarios * chore: Bump deps
- Loading branch information
1 parent
48c10ba
commit fcecb15
Showing
69 changed files
with
4,815 additions
and
3,150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
{ | ||
"name": "openui5-sample-app", | ||
"version": "0.4.0", | ||
"description": "Sample of an OpenUI5 app", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"start": "ui5 serve", | ||
"test": "wdio run ./webapp/test/wdio.conf.js" | ||
}, | ||
"devDependencies": { | ||
"@wdio/cli": "^8", | ||
"@wdio/local-runner": "^8", | ||
"@wdio/mocha-framework": "^8", | ||
"@wdio/spec-reporter": "^8", | ||
"wdio-qunit-service": "*" | ||
} | ||
"name": "openui5-sample-app", | ||
"version": "0.4.0", | ||
"description": "Sample of an OpenUI5 app", | ||
"private": true, | ||
"type": "module", | ||
"scripts": { | ||
"start": "ui5 serve", | ||
"test": "wdio run ./webapp/test/wdio.conf.js" | ||
}, | ||
"devDependencies": { | ||
"@wdio/cli": "^8", | ||
"@wdio/local-runner": "^8", | ||
"@wdio/mocha-framework": "^8", | ||
"@wdio/spec-reporter": "^8", | ||
"wdio-qunit-service": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
specVersion: '3.1' | ||
specVersion: "3.1" | ||
metadata: | ||
name: openui5-sample-app | ||
type: application | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
sap.ui.define(["sap/ui/core/UIComponent", "sap/ui/core/ComponentSupport"], (UIComponent) => { | ||
"use strict"; | ||
return UIComponent.extend("sap.ui.demo.todo.Component", { | ||
metadata: { | ||
manifest: "json" | ||
} | ||
}); | ||
}); | ||
sap.ui.define( | ||
["sap/ui/core/UIComponent", "sap/ui/core/ComponentSupport"], | ||
(UIComponent) => { | ||
"use strict"; | ||
return UIComponent.extend("sap.ui.demo.todo.Component", { | ||
metadata: { | ||
manifest: "json", | ||
}, | ||
}); | ||
} | ||
); |
Oops, something went wrong.