-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathStringCell.test.js
54 lines (41 loc) · 1.28 KB
/
StringCell.test.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* global describe, test, expect */
import { format } from 'date-fns';
import { dateTimeFormat } from '../DateTimeCell';
import { valueToString } from '../StringCell';
describe('StringCell valueToString', () => {
test('Undefined/Null', () => {
expect(valueToString(undefined)).toBe("");
expect(valueToString(null)).toBe("");
});
test('Boolean', () => {
expect(valueToString(true)).toBe("true");
expect(valueToString(false)).toBe("false");
});
test('Date', () => {
const testDate = new Date();
expect(valueToString(testDate)).toBe(format(testDate, dateTimeFormat));
});
test('String', () => {
const testString = 'Hello World!';
const testString2 = `Hello
World!`;
expect(valueToString(testString)).toBe(testString);
expect(valueToString(testString2)).toBe(testString2);
});
test('JSON', () => {
const json1 = {
a: 1,
b: '2',
c: null,
};
const jsonCircular = { b: 5 };
jsonCircular.a = jsonCircular;
expect(valueToString(json1)).toBe(JSON.stringify(json1));
expect(valueToString(jsonCircular)).toBe('Error: Invalid JSON');
});
test('Number', () => {
const test = 1234;
expect(valueToString(test)).toBe(test.toString());
expect(valueToString(0)).toBe("0");
});
});