Fixed coding styles

This commit is contained in:
Alejandro Celaya
2020-08-22 08:10:31 +02:00
parent 343a93b984
commit a91f1b3bd4
60 changed files with 133 additions and 125 deletions

View File

@@ -22,7 +22,7 @@ describe('<DeleteServerModal />', () => {
isOpen={true}
deleteServer={deleteServerMock}
history={historyMock}
/>
/>,
);
});
afterEach(() => wrapper.unmount());
@@ -38,7 +38,7 @@ describe('<DeleteServerModal />', () => {
const modalBody = wrapper.find(ModalBody);
expect(modalBody.find('p').first().text()).toEqual(
`Are you sure you want to remove ${serverName}?`
`Are you sure you want to remove ${serverName}?`,
);
});