Skip to content

Commit add3f80

Browse files
authored
Fix prettier errors in task-description.component.spec.ts
1 parent 060acc1 commit add3f80

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/app/component/task-description/task-description.component.spec.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,10 @@ describe('TaskDescriptionComponent', () => {
4646
fixture.detectChanges();
4747
const HTMLElement: HTMLElement = fixture.nativeElement;
4848
const contentDisplayedinParagraphTag = HTMLElement.querySelectorAll('p')!;
49-
expect(contentDisplayedinParagraphTag[0].textContent).toContain(
50-
testUUID
51-
);
49+
expect(contentDisplayedinParagraphTag[0].textContent).toContain(testUUID);
5250
});
5351

54-
it('check if description is being genenrated', () => {
52+
it('check if description is being genenrated', () => {
5553
const testDescription = 'Sample Description';
5654
component.currentTask.description = testDescription;
5755
fixture.detectChanges();

0 commit comments

Comments
 (0)