Skip to content
This repository was archived by the owner on May 7, 2021. It is now read-only.

Commit 3afce3b

Browse files
committed
fix(markdown): the tests were set to fit and kept the rest from running
1 parent 3f59907 commit 3afce3b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/app/markdown/markdown.component.spec.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ describe('Markdown component - ', () => {
8585
})
8686
);
8787

88-
fit('should emit output onsave empty field when ' +
88+
it('should emit output onsave empty field when ' +
8989
'`allowEmptySave` is false and the field is empty', () => {
9090
spyOn(comp.onSaveClick, 'emit');
9191
comp.allowEmptySave = false;
@@ -96,7 +96,7 @@ describe('Markdown component - ', () => {
9696
expect(comp.onSaveClick.emit).not.toHaveBeenCalled();
9797
});
9898

99-
fit('should emit output onsave empty field when `allowEmptySave` is true', () => {
99+
it('should emit output onsave empty field when `allowEmptySave` is true', () => {
100100
spyOn(comp.onSaveClick, 'emit');
101101
comp.allowEmptySave = true;
102102
comp.fieldEmpty = true;
@@ -106,7 +106,7 @@ describe('Markdown component - ', () => {
106106
expect(comp.onSaveClick.emit).toHaveBeenCalled();
107107
});
108108

109-
fit('should emit output onsave empty field when ' +
109+
it('should emit output onsave empty field when ' +
110110
'`allowEmptySave` is false and the field is not empty', () => {
111111
spyOn(comp.onSaveClick, 'emit');
112112
comp.allowEmptySave = false;

0 commit comments

Comments
 (0)