formatting with standardjs

This commit is contained in:
Syed Fasiuddin
2021-10-20 18:43:26 +05:30
parent 81f5f403fa
commit db5b4af730

View File

@ -5,11 +5,11 @@ test('should return true if the given string has alphanumeric characters that ar
})
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {
expect(alphaNumericPlaindrome('0_0 (: /-\ :) 0-0')).toBe(true)
expect(alphaNumericPlaindrome('0_0 (: /-:) 0-0')).toBe(true)
})
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {
expect(alphaNumericPlaindrome('five|\_/|four')).toBe(false)
expect(alphaNumericPlaindrome('five|_/|four')).toBe(false)
})
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {