UNPKG
js-ord
Version:
latest (4.2.1)
4.2.1
4.2.0
4.1.1
4.1.0
4.0.1
4.0.0
3.0.0
2.0.0
Get the ASCII value of alphanumeric characters
github.com/blossom-babs/ord
blossom-babs/ord
js-ord
/
__tests__
/
isPalindrome.test.js
10 lines
(8 loc)
•
299 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
//Test: npm test ./__tests__/isPalindrome.test.js
const
{ isPalindrome } =
require
(
"../src/index"
);
describe
(
'isPalindrome'
,
() =>
{
it
(
'expects to recieve a string'
,
() =>
{
expect
(
isPalindrome
(
'racecar'
)).
toBe
(
'racecar'
)
expect
(
isPalindrome
(
'blossom'
)).
toBe
(
'mossolb'
) }) })