Skip to content

Commit

Permalink
fix: set forceIgnoredPaths on CS (#1330)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillieRuemmele authored May 31, 2024
1 parent ae6699a commit f28206e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/collections/componentSetBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ export class ComponentSetBuilder {
);
});
}
componentSet.forceIgnoredPaths = resolvedComponents.forceIgnoredPaths;
}

resolvedComponents.toArray().map(addToComponentSet(componentSet));
Expand Down
3 changes: 3 additions & 0 deletions test/collections/componentSetBuilder.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,7 @@ describe('ComponentSetBuilder', () => {
},
});
expect(fromSourceStub.callCount).to.equal(1);
expect(compSet.forceIgnoredPaths).to.equal(undefined);
const fromSourceArgs = fromSourceStub.firstCall.args[0] as FromSourceOptions;
expect(fromSourceArgs).to.have.deep.property('fsPaths', [packageDir1]);
const filter = new ComponentSet();
Expand Down Expand Up @@ -333,6 +334,8 @@ describe('ComponentSetBuilder', () => {
},
});
expect(fromSourceStub.callCount).to.equal(1);
expect(compSet.forceIgnoredPaths?.size).to.equal(1);
expect(compSet.forceIgnoredPaths).to.deep.equal(new Set([join('my', 'path', 'to', 'a', 'customobject.xml')]));
const fromSourceArgs = fromSourceStub.firstCall.args[0] as FromSourceOptions;
expect(fromSourceArgs).to.have.deep.property('fsPaths', [packageDir1]);
const filter = new ComponentSet();
Expand Down

0 comments on commit f28206e

Please sign in to comment.