Commit cb892da6 authored by Winnie Hellmann's avatar Winnie Hellmann

Run yarn eslint --fix

parent b28ba16a
...@@ -8,7 +8,7 @@ describe('RecentSearchesServiceError', () => { ...@@ -8,7 +8,7 @@ describe('RecentSearchesServiceError', () => {
}); });
it('instantiates an instance of RecentSearchesServiceError and not an Error', () => { 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'); expect(recentSearchesServiceError.name).toBe('RecentSearchesServiceError');
}); });
......
...@@ -2,7 +2,7 @@ import editorOptions from '~/ide/lib/editor_options'; ...@@ -2,7 +2,7 @@ import editorOptions from '~/ide/lib/editor_options';
describe('Multi-file editor library editor options', () => { describe('Multi-file editor library editor options', () => {
it('returns an array', () => { it('returns an array', () => {
expect(editorOptions).toEqual(jasmine.any(Array)); expect(editorOptions).toEqual(expect.any(Array));
}); });
it('contains readOnly option', () => { it('contains readOnly option', () => {
......
...@@ -25,14 +25,14 @@ describe('Abuse Reports', () => { ...@@ -25,14 +25,14 @@ describe('Abuse Reports', () => {
it('should truncate long messages', () => { it('should truncate long messages', () => {
const $longMessage = findMessage('LONG MESSAGE'); const $longMessage = findMessage('LONG MESSAGE');
expect($longMessage.data('originalMessage')).toEqual(jasmine.anything()); expect($longMessage.data('originalMessage')).toEqual(expect.anything());
assertMaxLength($longMessage); assertMaxLength($longMessage);
}); });
it('should not truncate short messages', () => { it('should not truncate short messages', () => {
const $shortMessage = findMessage('SHORT MESSAGE'); 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', () => { it('should allow clicking a truncated message to expand and collapse the full message', () => {
......
...@@ -75,19 +75,19 @@ describe('EmojiMenu', () => { ...@@ -75,19 +75,19 @@ describe('EmojiMenu', () => {
expect(emojiMenu.registerEventListener).toHaveBeenCalledWith( expect(emojiMenu.registerEventListener).toHaveBeenCalledWith(
'one', 'one',
jasmine.anything(), expect.anything(),
'mouseenter focus', 'mouseenter focus',
dummyToggleButtonSelector, dummyToggleButtonSelector,
'mouseenter focus', 'mouseenter focus',
jasmine.anything(), expect.anything(),
); );
expect(emojiMenu.registerEventListener).toHaveBeenCalledWith( expect(emojiMenu.registerEventListener).toHaveBeenCalledWith(
'on', 'on',
jasmine.anything(), expect.anything(),
'click', 'click',
dummyToggleButtonSelector, dummyToggleButtonSelector,
jasmine.anything(), expect.anything(),
); );
}); });
...@@ -96,10 +96,10 @@ describe('EmojiMenu', () => { ...@@ -96,10 +96,10 @@ describe('EmojiMenu', () => {
expect(emojiMenu.registerEventListener).toHaveBeenCalledWith( expect(emojiMenu.registerEventListener).toHaveBeenCalledWith(
'on', 'on',
jasmine.anything(), expect.anything(),
'click', 'click',
`.js-awards-block .js-emoji-btn, .${dummyMenuClass} .js-emoji-btn`, `.js-awards-block .js-emoji-btn, .${dummyMenuClass} .js-emoji-btn`,
jasmine.anything(), expect.anything(),
); );
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment