From 580ca82d9ce241dc99818eb6f92921b4759b0f31 Mon Sep 17 00:00:00 2001 From: spawnia Date: Mon, 6 Dec 2021 14:33:01 +0000 Subject: [PATCH] refactor: Apply eslint fix --- src/string.test.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/string.test.ts b/src/string.test.ts index 9455909..0890318 100644 --- a/src/string.test.ts +++ b/src/string.test.ts @@ -1,14 +1,18 @@ -import {firstLine, includesIgnoreCase} from './string'; +import { firstLine, includesIgnoreCase } from './string'; describe('includesIgnoreCase', () => { it('finds exact match', () => { expect(includesIgnoreCase('find me', 'search and find me')).toBeTruthy(); - expect(includesIgnoreCase('find it', 'search and find me again')).toBeFalsy(); + expect( + includesIgnoreCase('find it', 'search and find me again'), + ).toBeFalsy(); expect(includesIgnoreCase('fist part', 'first part')).toBeFalsy(); }); it('finds no match', () => { - expect(includesIgnoreCase('find it', 'search and find me again')).toBeFalsy(); + expect( + includesIgnoreCase('find it', 'search and find me again'), + ).toBeFalsy(); }); it('finds match', () => {