*put table back up*

pull/1128/head
Cory LaViska 2023-01-13 14:37:34 -05:00
rodzic b45a9d55ca
commit 6b9b410bdc
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -13,7 +13,6 @@ module.exports = {
es2021: true,
browser: true
},
reportUnusedDisableDirectives: true,
parserOptions: {
sourceType: 'module'
},

Wyświetl plik

@ -472,10 +472,11 @@ describe('<sl-input>', () => {
</div>
`);
const form = el.querySelector<HTMLFormElement>('form')!;
const formControls = getFormControls(form);
expect(formControls.length).to.equal(10);
expect(formControls.map((fc: HTMLInputElement) => fc.value).join('')).to.equal('12345678910');
const formControls = getFormControls(form); // eslint-disable-line
expect(formControls.length).to.equal(10); // eslint-disable-line
expect(formControls.map((fc: HTMLInputElement) => fc.value).join('')).to.equal('12345678910'); // eslint-disable-line
/* eslint-enable */
});
});
});