()
| 717 | |
| 718 | describe('applyDependentOverrides', () => { |
| 719 | const gmailConfig = () => |
| 720 | blockWith([ |
| 721 | { id: 'credential', title: 'Credential', type: 'oauth-input' }, |
| 722 | { |
| 723 | id: 'folder', |
| 724 | title: 'Label', |
| 725 | type: 'folder-selector', |
| 726 | dependsOn: ['credential'], |
| 727 | selectorKey: 'gmail.labels', |
| 728 | }, |
| 729 | ]) |
| 730 | |
| 731 | it('applies a top-level re-pick value', () => { |
| 732 | vi.mocked(getBlock).mockReturnValue(gmailConfig()) |
no test coverage detected