Skip to content

Commit

Permalink
feat(editor-content): apply format #29872
Browse files Browse the repository at this point in the history
  • Loading branch information
nicobytes committed Sep 27, 2024
1 parent a89e9e2 commit 38287eb
Showing 1 changed file with 3 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
import {
Spectator,
byTestId,
createComponentFactory,
} from '@ngneat/spectator/jest';

import { Spectator, byTestId, createComponentFactory } from '@ngneat/spectator/jest';

import { DotMessageService } from '@dotcms/data-access';
import { DotMessagePipe } from '@dotcms/ui';
Expand Down Expand Up @@ -38,7 +33,7 @@ describe('DotFileFieldUiMessageComponent', () => {
} as unknown
});
});

it('should be created', () => {
spectator.detectChanges();
expect(spectator.component).toBeTruthy();
Expand All @@ -47,7 +42,7 @@ describe('DotFileFieldUiMessageComponent', () => {
it('should have proper data', () => {
spectator.detectChanges();

const expectMessage = getUiMessage('DEFAULT')
const expectMessage = getUiMessage('DEFAULT');

const severity = spectator.query(byTestId('ui-message-icon-container'));
const messageIcon = spectator.query(byTestId('ui-message-icon'));
Expand All @@ -58,6 +53,4 @@ describe('DotFileFieldUiMessageComponent', () => {
expect(messageText).toContainText('Drag and Drop File');
});
});


});

0 comments on commit 38287eb

Please sign in to comment.