chore: add missing semicolon
This commit is contained in:
parent
74748c60b2
commit
b853902890
2 changed files with 2 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ context('Depends On', () => {
|
|||
cy.fill_field('test_field', 'Show Tab');
|
||||
cy.get('body').click();
|
||||
cy.findByRole("tab", {name: "Dependent Tab"}).should('be.visible');
|
||||
})
|
||||
});
|
||||
it('should set the field as mandatory depending on other fields value', () => {
|
||||
cy.new_form('Test Depends On');
|
||||
cy.fill_field('test_field', 'Some Value');
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ export default class Tab {
|
|||
hide = true;
|
||||
}
|
||||
|
||||
this.toggle(!hide)
|
||||
this.toggle(!hide);
|
||||
}
|
||||
|
||||
toggle(show) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue