mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
24 lines
595 B
TypeScript
24 lines
595 B
TypeScript
|
import { csvToJson, jsonToCsv } from '../../../src/utils/helpers/csvjson';
|
||
|
|
||
|
describe('csvjson', () => {
|
||
|
const csv = `"foo","bar","baz"
|
||
|
"hello","world","something"
|
||
|
"one","two","three"`;
|
||
|
const json = [
|
||
|
{ foo: 'hello', bar: 'world', baz: 'something' },
|
||
|
{ foo: 'one', bar: 'two', baz: 'three' },
|
||
|
];
|
||
|
|
||
|
describe('csvToJson', () => {
|
||
|
test('parses CSVs as expected', async () => {
|
||
|
expect(await csvToJson(csv)).toEqual(json);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('jsonToCsv', () => {
|
||
|
test('parses JSON as expected', () => {
|
||
|
expect(jsonToCsv(json)).toEqual(csv);
|
||
|
});
|
||
|
});
|
||
|
});
|