-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: support split custom labels #62
Conversation
'<fullName>force_app_Label_2</fullName>' | ||
); | ||
// Skipping if using sfdx executable because it does not support multiple CustomLabels files on retrieve | ||
(EXECUTABLE.includes('plugin-source') ? describe : describe.skip)('CustomLabels', () => { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice.
091c1f9
to
090f510
Compare
@@ -265,18 +265,16 @@ describe('SourceCommand', () => { | |||
const compSet = await command.callCreateComponentSet(options); | |||
expect(fromManifestStub.calledOnce).to.equal(true); | |||
expect(fromManifestStub.firstCall.args[0]).to.equal(options.manifest); | |||
expect(fromManifestStub.firstCall.args[1]).to.deep.equal({ resolve: packageDir1 }); | |||
expect(fromManifestStub.firstCall.args[1]).to.deep.equal({ resolve: [packageDir1] }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mdonnalley the SDRL had some breaking changes, so I updated the createComponentSet
to use the new methods, which resulted in changes here and retrieve.test.ts
could you verify this still is correct
5ba0caa
to
4269f61
Compare
What does this PR do?
Supports CustomLabels split across multiple package directories
What issues does this PR fix or reference?
@W-9016030@