-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEATURE] buildThemes: Add filtering for available themes #419
Changes from 1 commit
a2c84c1
b230516
534f6fa
0e468c4
3e1eb03
daaaa6a
dc93bf8
5da7ed5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,10 @@ const mock = require("mock-require"); | |
|
||
let buildThemes = require("../../../lib/tasks/buildThemes"); | ||
|
||
test.before(() => { | ||
require("@ui5/logger").setLevel("verbose"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Was this intentionally added or is it a leftover from some debugging? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Intensionally, to also cover the verbose logging code. |
||
}); | ||
|
||
test.beforeEach((t) => { | ||
// Stubbing processors/themeBuilder | ||
t.context.themeBuilderStub = sinon.stub(); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New optional parameter
themesPattern
also needs to be documented here