We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8d6c8 commit 7e7932fCopy full SHA for 7e7932f
tests/integration_test/firebase_analytics/firebase_analytics_e2e_test.dart
@@ -170,6 +170,27 @@ void main() {
170
);
171
});
172
173
+ test(
174
+ 'logInAppPurchase',
175
+ () async {
176
+ await expectLater(
177
+ FirebaseAnalytics.instance.logInAppPurchase(
178
+ currency: 'USD',
179
+ freeTrial: false,
180
+ price: 4.99,
181
+ priceIsDiscounted: false,
182
+ productID: 'com.example.product',
183
+ productName: 'Example Product',
184
+ quantity: 1,
185
+ subscription: true,
186
+ value: 4.99,
187
+ ),
188
+ completes,
189
+ );
190
+ },
191
+ skip: defaultTargetPlatform != TargetPlatform.iOS,
192
193
+
194
test('setUserId', () async {
195
await expectLater(
196
FirebaseAnalytics.instance.setUserId(id: 'foo'),
0 commit comments