diff --git a/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart b/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart index c06b2394..cc562098 100644 --- a/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart +++ b/packages/shorebird_cli/lib/src/commands/account/subscribe_account_command.dart @@ -31,7 +31,7 @@ patches to your apps. The subscription costs \$20 USD per month per user and is billed through Stripe. -Visit ${styleUnderlined.wrap(lightCyan.wrap('https://github.com/shorebirdtech/shorebird/blob/main/TRUSTED_TESTERS.md'))} for more details.'''; +Visit ${styleUnderlined.wrap(lightCyan.wrap('https://shorebird.dev'))} for more details.'''; @override Future run() async { diff --git a/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart b/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart index bd06080b..f1efe33f 100644 --- a/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart +++ b/packages/shorebird_cli/test/src/commands/account/subscribe_account_command_test.dart @@ -64,10 +64,10 @@ void main() { expect(subscribeAccountCommand.description, isNotEmpty); }); - test('summary has price and link to trusted testers doc', () { + test('summary has price and link to shorebird.dev', () { expect( subscribeAccountCommand.summary, - stringContainsInOrder([r'$20', 'TRUSTED_TESTERS.md']), + stringContainsInOrder([r'$20', 'shorebird.dev']), ); });