Skip to content

Commit a7bf308

Browse files
committed
update version string
1 parent 1dc41f7 commit a7bf308

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/node/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export const httpProxyUri =
3535
* for outputting to the console.
3636
*/
3737
export function getVersionString(): string {
38-
return [version, commit, "Code", codeVersion].join(" ")
38+
return [version, commit, "with Code", codeVersion].join(" ")
3939
}
4040

4141
/**

test/unit/node/constants.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ describe("constants", () => {
6161

6262
it("should return a human-readable version string", () => {
6363
expect(constants.getVersionString()).toStrictEqual(
64-
`${mockPackageJson.version} ${mockPackageJson.commit} Code ${mockCodePackageJson.version}`,
64+
`${mockPackageJson.version} ${mockPackageJson.commit} with Code ${mockCodePackageJson.version}`,
6565
)
6666
})
6767

0 commit comments

Comments
 (0)