-
Notifications
You must be signed in to change notification settings - Fork 9
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 option method #17
Conversation
sculove
commented
Jul 18, 2017
- remove option method
test/unit/component.spec.js
Outdated
@@ -3,7 +3,7 @@ import Component from "../../src/Component"; | |||
class TestClass extends Component { | |||
constructor(option) { | |||
super(); | |||
this.option(option); | |||
this.option = option; |
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.
GOOD. 👍
Could you make testcase for option
property?
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.
Ah.. Currently, Did Testcase have breaking?
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.
@mixed test is passed.
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.
I should change option
to options.
I missed code deletion for options. now I handle it! |