4037-fix(multi-check) #973

Merged
carlosjr merged 4 commits from 4037-multi-check_align into dev 2022-05-16 08:35:57 +00:00
1 changed files with 0 additions and 8 deletions
Showing only changes of commit 1707ff7f0f - Show all commits

View File

@ -200,14 +200,6 @@ describe('Component vnMultiCheck', () => {
expect(isCheckedDummy).toEqual(true);
});
it(`should return true only if is checked and checked dummy is enabled`, () => {
controller.checked = true;
controller.checkDummyEnabled = true;
const isCheckedDummy = controller.isCheckedDummy();
expect(isCheckedDummy).toEqual(true);
});
it(`should return false if not checked`, () => {
alexm marked this conversation as resolved
Review

Tested twice?

Tested twice?
controller.checked = false;
controller.checkDummyEnabled = true;