From 89c6c7d6ce1bc171d5fde5a418d5bab23ef9ca5b Mon Sep 17 00:00:00 2001 From: Lucas Werkmeister Date: Wed, 15 Nov 2023 10:22:11 +0100 Subject: [PATCH] Split comment across two lines (#570) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit To prevent an eslint warning about the line length that’s showing up on every pull request (under “Unchanged files with check annotations”) and starting to get annoying. Bug: T349652 Bug: T350664 --- tests/unit/store/actions.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/unit/store/actions.test.ts b/tests/unit/store/actions.test.ts index 1025cd14..a8e06b68 100644 --- a/tests/unit/store/actions.test.ts +++ b/tests/unit/store/actions.test.ts @@ -355,7 +355,8 @@ describe( 'HANDLE_LANGUAGE_CHANGE', () => { } ); it( 'validates and sets to state if valid lang code was returned', async () => { - // T349652: en-GB from item (preferred IETF lanugage tag format) is lowercased to en-gb (MediaWiki code) + // T349652: en-GB from item (preferred IETF lanugage tag format) + // is lowercased to en-gb (MediaWiki code) const getLanguageCodeFromItemMock = jest.fn().mockResolvedValue( 'en-GB' ); const isValidMock = jest.fn().mockReturnValue( true ); const actions = createActions(