diff --git a/package.json b/package.json index 16f50eb6..2ac13ed8 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,7 @@ "node": ">=16.0.0" }, "dependencies": { - "@oclif/core": "3.0.0-beta.13", + "@oclif/core": "3.0.0-beta.16", "@salesforce/core": "^5.2.6", "@salesforce/kit": "^3.0.11", "@salesforce/ts-types": "^2.0.7", diff --git a/test/unit/ux/spinner.test.ts b/test/unit/ux/spinner.test.ts index 9ce638e0..786076fb 100644 --- a/test/unit/ux/spinner.test.ts +++ b/test/unit/ux/spinner.test.ts @@ -28,7 +28,7 @@ describe('Spinner', () => { const spinner = new Spinner(true); spinner.start('Doing things'); spinner.stop('Finished'); - expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...\n']); + expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...']); }); it('should not log anything if output is not enabled', () => { @@ -45,7 +45,7 @@ describe('Spinner', () => { spinner.start('Doing things'); spinner.pause(() => {}); spinner.stop('Finished'); - expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...\n']); + expect(writeStub.firstCall.args).to.deep.equal(['stderr', 'Doing things...']); }); it('should not log anything if output is not enabled', () => { diff --git a/yarn.lock b/yarn.lock index 6477afae..7a376c5c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -532,10 +532,10 @@ "@nodelib/fs.scandir" "2.1.5" fastq "^1.6.0" -"@oclif/core@3.0.0-beta.13": - version "3.0.0-beta.13" - resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.0.0-beta.13.tgz#aee260111378560cb6f4e7c0893fd8e6c69bb145" - integrity sha512-c1uBS1EhKEc0Px1Dbf3dXmw2Jlvlyz4n0WQT7o2VnElNnJaqPfDvlKnOpb4waUNlKfBr0x5POnMpe3TWoC73mA== +"@oclif/core@3.0.0-beta.16": + version "3.0.0-beta.16" + resolved "https://registry.yarnpkg.com/@oclif/core/-/core-3.0.0-beta.16.tgz#da231238d34b1971c455e9e990b2b48680fa2510" + integrity sha512-z/GUi+qJ0CRflIRiKLlnmNS/uaftgrFwXPmROHVHBCAoaxBNsudDbyGxCZlWn0n2n2cyjXX4zqdxX3OLb36TDw== dependencies: "@types/cli-progress" "^3.11.0" ansi-escapes "^4.3.2"