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 10b6448 commit e21f366Copy full SHA for e21f366
packages/common_client/test/data_sources/data_source_event_handler_test.dart
@@ -46,6 +46,12 @@ void main() {
46
'"variation":0,"trackEvents":false}'
47
'}');
48
49
+ final bob = flagManager!.get('HasBob')!.flag!;
50
+ expect(bob.version, 11);
51
+ expect(bob.detail.value, LDValue.ofBool(false));
52
+ expect(bob.detail.variationIndex, 1);
53
+ expect(bob.detail.reason, isNull);
54
+
55
final killSwitch = flagManager!.get('killswitch')!.flag!;
56
expect(killSwitch.version, 10);
57
expect(killSwitch.detail.value, LDValue.ofBool(true));
0 commit comments