Skip to content

Commit

Permalink
#28084 fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinogiardino committed Jul 10, 2024
1 parent cd63793 commit c444067
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ describe('DotBinaryFieldEditorComponent', () => {

tick(355);

expect(component.monacoOptions()).not.toEqual(expectedMonacoOptions);
expect(component.mimeType).not.toBe('text/x-velocity');
expect(component.monacoOptions()).toEqual(expectedMonacoOptions);
expect(component.mimeType).toBe('text/x-velocity');
}));
it('should fallback with plain text if language is not found', fakeAsync(() => {
const expectedMonacoOptions = {
Expand Down

0 comments on commit c444067

Please sign in to comment.