File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
tests/regression/insights Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ export async function modifyFeaturesConfigJson(filePath: string): Promise<void>
19
19
try {
20
20
fs . ensureFileSync ( targetFilePath ) ;
21
21
fs . writeFileSync ( targetFilePath , fs . readFileSync ( filePath ) ) ;
22
+ console . log ( `Features config modified: ${ fs . readFileSync ( targetFilePath ) } ` ) ;
22
23
resolve ( ) ;
23
24
}
24
25
catch ( err ) {
Original file line number Diff line number Diff line change 77
77
// Update remote config .json to valid
78
78
await modifyFeaturesConfigJson ( pathes . validConfig ) ;
79
79
await updateControlNumber ( 48.2 ) ;
80
+ await console . log ( await getColumnValueFromTableInDB ( featuresConfigTable , 'data' ) ) ;
81
+ await console . log ( await getColumnValueFromTableInDB ( featuresConfigTable , 'controlNumber' ) ) ;
80
82
let featureVersion = await JSON . parse ( await getColumnValueFromTableInDB ( featuresConfigTable , 'data' ) ) . version ;
81
83
let versionFromConfig = await Common . getJsonPropertyValue ( 'version' , pathes . validConfig ) ;
82
84
You can’t perform that action at this time.
0 commit comments