@@ -1463,6 +1463,7 @@ describe('DataPipelineClient tests', () => {
14631463 const schedule = '0 0 * * *' ;
14641464 const dataSourceTypeStandard = TabularDataSourceType . STANDARD ;
14651465 const dataSourceTypeHotStorage = TabularDataSourceType . HOT_STORAGE ;
1466+ const enableBackfill = true ;
14661467
14671468 describe ( 'listDataPipelines tests' , ( ) => {
14681469 const pipeline1 = new DataPipeline ( {
@@ -1571,6 +1572,7 @@ describe('DataPipelineClient tests', () => {
15711572 name : pipelineName ,
15721573 mqlBinary : mqlQuery . map ( ( value ) => BSON . serialize ( value ) ) ,
15731574 schedule,
1575+ enableBackfill,
15741576 dataSourceType : dataSourceTypeStandard ,
15751577 } ) ;
15761578
@@ -1579,6 +1581,7 @@ describe('DataPipelineClient tests', () => {
15791581 pipelineName ,
15801582 mqlQuery ,
15811583 schedule ,
1584+ enableBackfill ,
15821585 dataSourceTypeStandard
15831586 ) ;
15841587 expect ( capReq ) . toStrictEqual ( expectedRequest ) ;
@@ -1591,14 +1594,16 @@ describe('DataPipelineClient tests', () => {
15911594 name : pipelineName ,
15921595 mqlBinary : mqlQuery . map ( ( value ) => BSON . serialize ( value ) ) ,
15931596 schedule,
1597+ enableBackfill,
15941598 dataSourceType : dataSourceTypeStandard ,
15951599 } ) ;
15961600
15971601 const response = await subject ( ) . createDataPipeline (
15981602 organizationId ,
15991603 pipelineName ,
16001604 mqlQuery ,
1601- schedule
1605+ schedule ,
1606+ enableBackfill
16021607 ) ;
16031608 expect ( capReq ) . toStrictEqual ( expectedRequest ) ;
16041609 expect ( response ) . toEqual ( pipelineId ) ;
0 commit comments