feat: minor status and pricing adjustments (#715)

This commit is contained in:
Felix Angelov
2023-06-26 12:15:01 -07:00
committed by GitHub
parent c78a8b0031
commit 9f6a5de2f1
3 changed files with 8 additions and 6 deletions
+2 -3
View File
@@ -10,10 +10,9 @@
Home of the Shorebird Tools
## Status
## Getting Started
Shorebird code push is in Open Beta! Instructions for install and usage are at
https://docs.shorebird.dev/
Visit https://docs.shorebird.dev to get started.
## Packages
@@ -27,7 +27,7 @@ class SubscribeAccountCommand extends ShorebirdCommand
String get summary => '''
A subscription to Shorebird is required to publish patches to your apps.
The subscription costs \$20 USD per month per user and is billed through Stripe.
The subscription is billed monthly based on usage through Stripe.
Visit ${styleUnderlined.wrap(lightCyan.wrap('https://shorebird.dev'))} for more details.''';
@@ -77,10 +77,13 @@ void main() {
expect(subscribeAccountCommand.description, isNotEmpty);
});
test('summary has price and link to shorebird.dev', () {
test('summary contains usage and link to shorebird.dev', () {
expect(
subscribeAccountCommand.summary,
stringContainsInOrder([r'$20', 'shorebird.dev']),
stringContainsInOrder([
'The subscription is billed monthly based on usage through Stripe.',
'shorebird.dev'
]),
);
});