feat: minor status and pricing adjustments (#715)
This commit is contained in:
@@ -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.''';
|
||||
|
||||
|
||||
+5
-2
@@ -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'
|
||||
]),
|
||||
);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user