-
-
Notifications
You must be signed in to change notification settings - Fork 58
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
Remove use of core-object
for tasks
#999
Remove use of core-object
for tasks
#999
Conversation
4f97e8e
to
2442cec
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #999 +/- ##
==========================================
+ Coverage 94.75% 94.81% +0.05%
==========================================
Files 18 18
Lines 534 540 +6
==========================================
+ Hits 506 512 +6
Misses 28 28 ☔ View full report in Codecov by Sentry. |
2442cec
to
42da696
Compare
core-object
core-object
for tasks
@@ -10,7 +10,6 @@ module.exports = { | |||
let ResetTask = require('../tasks/reset'); | |||
|
|||
let resetTask = new ResetTask({ | |||
ui: this.ui, |
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.
Not used in ResetTask
.
run() { | ||
let dependencyAdapters = | ||
this.dependencyManagerAdapters || |
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.
dependencyManagerAdapters
is never passed in as an option for the reset task, so removed it here for now.
42da696
to
819a6d5
Compare
Will make follow-up PRs for the rest, don't want these to get too big.