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 bc5c2e1 commit bb385c5Copy full SHA for bb385c5
flutter/example/integration_test/web_sdk_test.dart
@@ -133,6 +133,7 @@ void main() {
133
await SentryFlutter.init((options) {
134
options.enableSentryJs = true;
135
options.dsn = fakeDsn;
136
+ options.attachScreenshot = true;
137
138
confOptions = options;
139
}, appRunner: () async {
@@ -141,6 +142,10 @@ void main() {
141
142
);
143
});
144
145
+ expect(
146
+ confOptions?.sdk.integrations.contains("screenshotIntegration"),
147
+ isTrue,
148
+ );
149
expect(
150
confOptions?.sdk.integrations.contains("widgetsBindingIntegration"),
151
isTrue,
0 commit comments