We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fcaeca0 commit eb29a98Copy full SHA for eb29a98
test/migration/omniscript-standard-datamodel.test.ts
@@ -536,7 +536,8 @@ describe('OmniScript Standard Data Model (Metadata API Disabled) - Assessment an
536
expect(result.dependenciesIP[0].name).to.equal('API-Gateway_Customer@Info!');
537
538
// DataRaptor dependencies include: bundle from DRAction + preTransformBundle & postTransformBundle from IPAction
539
- expect(result.dependenciesDR).to.have.lengthOf(3);
+ // Note: 'Customer-Data@Loader!' appears in both DRAction and IPAction.preTransformBundle, but is deduplicated
540
+ expect(result.dependenciesDR).to.have.lengthOf(2);
541
expect(result.dependenciesDR.map((d) => d.name)).to.include.members([
542
'Customer-Data@Loader!',
543
'Product#Info$Extractor',
0 commit comments