Run yarn eslint --fix
This commit is contained in:
parent
b28ba16a1e
commit
cb892da622
|
|
@ -8,7 +8,7 @@ describe('RecentSearchesServiceError', () => {
|
|||
});
|
||||
|
||||
it('instantiates an instance of RecentSearchesServiceError and not an Error', () => {
|
||||
expect(recentSearchesServiceError).toEqual(jasmine.any(RecentSearchesServiceError));
|
||||
expect(recentSearchesServiceError).toEqual(expect.any(RecentSearchesServiceError));
|
||||
expect(recentSearchesServiceError.name).toBe('RecentSearchesServiceError');
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import editorOptions from '~/ide/lib/editor_options';
|
|||
|
||||
describe('Multi-file editor library editor options', () => {
|
||||
it('returns an array', () => {
|
||||
expect(editorOptions).toEqual(jasmine.any(Array));
|
||||
expect(editorOptions).toEqual(expect.any(Array));
|
||||
});
|
||||
|
||||
it('contains readOnly option', () => {
|
||||
|
|
|
|||
|
|
@ -25,14 +25,14 @@ describe('Abuse Reports', () => {
|
|||
it('should truncate long messages', () => {
|
||||
const $longMessage = findMessage('LONG MESSAGE');
|
||||
|
||||
expect($longMessage.data('originalMessage')).toEqual(jasmine.anything());
|
||||
expect($longMessage.data('originalMessage')).toEqual(expect.anything());
|
||||
assertMaxLength($longMessage);
|
||||
});
|
||||
|
||||
it('should not truncate short messages', () => {
|
||||
const $shortMessage = findMessage('SHORT MESSAGE');
|
||||
|
||||
expect($shortMessage.data('originalMessage')).not.toEqual(jasmine.anything());
|
||||
expect($shortMessage.data('originalMessage')).not.toEqual(expect.anything());
|
||||
});
|
||||
|
||||
it('should allow clicking a truncated message to expand and collapse the full message', () => {
|
||||
|
|
|
|||
|
|
@ -75,19 +75,19 @@ describe('EmojiMenu', () => {
|
|||
|
||||
expect(emojiMenu.registerEventListener).toHaveBeenCalledWith(
|
||||
'one',
|
||||
jasmine.anything(),
|
||||
expect.anything(),
|
||||
'mouseenter focus',
|
||||
dummyToggleButtonSelector,
|
||||
'mouseenter focus',
|
||||
jasmine.anything(),
|
||||
expect.anything(),
|
||||
);
|
||||
|
||||
expect(emojiMenu.registerEventListener).toHaveBeenCalledWith(
|
||||
'on',
|
||||
jasmine.anything(),
|
||||
expect.anything(),
|
||||
'click',
|
||||
dummyToggleButtonSelector,
|
||||
jasmine.anything(),
|
||||
expect.anything(),
|
||||
);
|
||||
});
|
||||
|
||||
|
|
@ -96,10 +96,10 @@ describe('EmojiMenu', () => {
|
|||
|
||||
expect(emojiMenu.registerEventListener).toHaveBeenCalledWith(
|
||||
'on',
|
||||
jasmine.anything(),
|
||||
expect.anything(),
|
||||
'click',
|
||||
`.js-awards-block .js-emoji-btn, .${dummyMenuClass} .js-emoji-btn`,
|
||||
jasmine.anything(),
|
||||
expect.anything(),
|
||||
);
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue