UNPKG
@characters/multiplication-sign
Version:
latest (2.1.0)
2.1.0
The character '×'
github.com/kesne/characters
kesne/characters
@characters/multiplication-sign
/
src
/
index.test.ts
11 lines
(8 loc)
•
243 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
char
from
"./"
;
const
expected =
"×"
;
test
(
"Expected imported character to match hard-coded character"
, () => {
expect
(
char
).
toBe
(expected); });
test
(
"Character should have length of 1"
, () => {
expect
(
char
).
toHaveLength
(
1
); });