mirror of
https://github.com/TheAlgorithms/JavaScript.git
synced 2025-07-06 09:28:26 +08:00
formatting with standardjs
This commit is contained in:
@ -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', () => {
|
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', () => {
|
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', () => {
|
test('should return true if the given string has alphanumeric characters that are palindrom irrespective of case and symbols', () => {
|
||||||
|
Reference in New Issue
Block a user