Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
fix version test
Browse files Browse the repository at this point in the history
  • Loading branch information
oksana-grishchenko committed Dec 28, 2023
1 parent 135b82c commit 5735547
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli-tests/tests/version.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ test.describe('Everest CLI "version" validation', async () => {
const hash = await cli.exec('git rev-parse --short HEAD');

await hash.assertSuccess();
const version = `v0.0.0-${hash}`;
const version = `v0.0.0-${hash.getStdOutLines()[0]}`;

await out.assertSuccess();
await out.outContainsNormalizedMany([
Expand Down

0 comments on commit 5735547

Please sign in to comment.