Added dropdown in domains section, to allow multiple options over domains

This commit is contained in:
Alejandro Celaya
2022-04-24 13:05:33 +02:00
parent e976a0c716
commit 932dec3bde
9 changed files with 71 additions and 32 deletions

View File

@@ -25,7 +25,7 @@ describe('<DomainRow />', () => {
afterEach(() => wrapper?.unmount());
it.each([
it.skip.each([
[Mock.of<Domain>({ domain: '', isDefault: true }), undefined, 1, 1, 'defaultDomainBtn'],
[Mock.of<Domain>({ domain: '', isDefault: false }), undefined, 0, 0, undefined],
[Mock.of<Domain>({ domain: 'foo.com', isDefault: true }), undefined, 1, 1, 'defaultDomainBtn'],