Skip to content

Commit

Permalink
adjust e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
felangel committed Nov 14, 2023
1 parent 5b582b6 commit 3570d0d
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,10 @@ void main() {
workingDirectory: cwd,
);
expect(shorebirdReleaseResult.stderr, isEmpty);
expect(shorebirdReleaseResult.stdout, contains('Published Release!'));
expect(
shorebirdReleaseResult.stdout,
contains('Published Release $releaseVersion!'),
);
expect(shorebirdReleaseResult.exitCode, equals(0));

// Verify that no patch is available.
Expand Down Expand Up @@ -178,7 +181,7 @@ void main() {
workingDirectory: cwd,
);
expect(shorebirdPatchResult.stderr, isEmpty);
expect(shorebirdPatchResult.stdout, contains('Published Patch'));
expect(shorebirdPatchResult.stdout, contains('Published Patch 1!'));
expect(shorebirdPatchResult.exitCode, equals(0));

// Verify that the patch is available.
Expand Down

0 comments on commit 3570d0d

Please sign in to comment.