Removed no longer needed eslint disable comments

This commit is contained in:
Alejandro Celaya
2022-03-26 13:07:58 +01:00
parent 28a5166f56
commit 98450ebec3
12 changed files with 10 additions and 13 deletions

View File

@@ -78,7 +78,7 @@ describe('<ImportServersBtn />', () => {
const wrapper = createWrapper();
const file = wrapper.find('.import-servers-btn__csv-select');
await file.simulate('change', { target: { files: [''] } }); // eslint-disable-line @typescript-eslint/await-thenable
await file.simulate('change', { target: { files: [''] } });
expect(importServersFromFile).toHaveBeenCalledTimes(1);
});