-
Notifications
You must be signed in to change notification settings - Fork 29
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
e2e: add basic bean ref tests #571
Conversation
@@ -56,10 +56,10 @@ export const NewBeanModal: FunctionComponent<NewBeanModalProps> = (props: NewBea | |||
isOpen={props.isOpen} | |||
onClose={handleCancel} | |||
actions={[ | |||
<Button key="confirm" variant="primary" onClick={handleConfirm}> | |||
<Button key="confirm" variant="primary" onClick={handleConfirm} data-testid="creat-bean-btn"> |
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.
just one typo, creat
-> create
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.
thanks! fixed
uri: log:test | ||
- beans: | ||
- name: mysqlDataSource | ||
type: io.kaoto.mysqlDataSource |
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.
Trivial but usually the class name starts with a capital letter, so MysqlDataSource
or MySQLDataSource
might look nice
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.
thanks for noticing! fixed
3698271
to
0b05483
Compare
password: dbpass | ||
driver-class-name: com.mysql.jdbc.Driver | ||
- name: mysqlPostgreSqlSource | ||
type: io.kaoto.mysqlPostgreSqlSource |
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.
Probably this one also to start the class name with a capital letter?
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.
thanks, didn't notice that :) Updated
0b05483
to
461a581
Compare
461a581
to
02e9a56
Compare
No description provided.