From 5ca0b935766d220b447227e0bd7fa4d043301dd2 Mon Sep 17 00:00:00 2001 From: Camille Date: Tue, 24 Jan 2023 15:27:51 +0100 Subject: [PATCH] test(columnDesc): add description to column field in DocApi server test --- test/server/lib/DocApi.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/server/lib/DocApi.ts b/test/server/lib/DocApi.ts index 0d4bcd26..796701c1 100644 --- a/test/server/lib/DocApi.ts +++ b/test/server/lib/DocApi.ts @@ -496,6 +496,7 @@ function testDocApi() { isFormula: false, formula: '', label: 'A', + description: '', untieColIdFromLabel: false, summarySourceCol: 0, displayCol: 0, @@ -516,6 +517,7 @@ function testDocApi() { isFormula: false, formula: '', label: 'B', + description: '', untieColIdFromLabel: false, summarySourceCol: 0, displayCol: 0, @@ -536,6 +538,7 @@ function testDocApi() { isFormula: false, formula: '', label: 'C', + description: '', untieColIdFromLabel: false, summarySourceCol: 0, displayCol: 0, @@ -556,6 +559,7 @@ function testDocApi() { isFormula: true, formula: '', label: 'D', + description: '', untieColIdFromLabel: false, summarySourceCol: 0, displayCol: 0, @@ -576,6 +580,7 @@ function testDocApi() { isFormula: true, formula: '$A.upper()', label: 'E', + description: '', untieColIdFromLabel: false, summarySourceCol: 0, displayCol: 0,