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.
additionalLicenses
1 parent 834834b commit d3b0b43Copy full SHA for d3b0b43
test/licenses_test.dart
@@ -0,0 +1,14 @@
1
+import 'package:checks/checks.dart';
2
+import 'package:flutter_test/flutter_test.dart';
3
+import 'package:zulip/licenses.dart';
4
+
5
+import 'fake_async.dart';
6
7
+void main() {
8
+ TestWidgetsFlutterBinding.ensureInitialized();
9
10
+ test('smoke: ensure all additional licenses load', () => awaitFakeAsync((async) async {
11
+ await check(additionalLicenses().toList())
12
+ .completes((it) => it.isNotEmpty());
13
+ }), skip: true); // TODO(#1540)
14
+}
0 commit comments