|
@@ -73,6 +73,7 @@ describe('file_export', () => {
|
|
|
],
|
|
],
|
|
|
rows: [
|
|
rows: [
|
|
|
[123, 'some_string', 1.234, true],
|
|
[123, 'some_string', 1.234, true],
|
|
|
|
|
+ [1000, 'some_string', 1.234567891, true],
|
|
|
[0o765, 'some string with " in the middle', 1e-2, false],
|
|
[0o765, 'some string with " in the middle', 1e-2, false],
|
|
|
[0o765, 'some string with "" in the middle', 1e-2, false],
|
|
[0o765, 'some string with "" in the middle', 1e-2, false],
|
|
|
[0o765, 'some string with """ in the middle', 1e-2, false],
|
|
[0o765, 'some string with """ in the middle', 1e-2, false],
|
|
@@ -89,6 +90,7 @@ describe('file_export', () => {
|
|
|
const expectedText =
|
|
const expectedText =
|
|
|
'"integer_value";"string_value";"float_value";"boolean_value"\r\n' +
|
|
'"integer_value";"string_value";"float_value";"boolean_value"\r\n' +
|
|
|
'123;"some_string";1.234;true\r\n' +
|
|
'123;"some_string";1.234;true\r\n' +
|
|
|
|
|
+ '1000;"some_string";1.234567891;true\r\n' +
|
|
|
'501;"some string with "" in the middle";0.01;false\r\n' +
|
|
'501;"some string with "" in the middle";0.01;false\r\n' +
|
|
|
'501;"some string with """" in the middle";0.01;false\r\n' +
|
|
'501;"some string with """" in the middle";0.01;false\r\n' +
|
|
|
'501;"some string with """""" in the middle";0.01;false\r\n' +
|
|
'501;"some string with """""" in the middle";0.01;false\r\n' +
|