docs: included flutter_bloc TODO

pull/234/head
alestiago 3 years ago
parent 88e4ae7b8f
commit 8729e7c0a9

@ -33,6 +33,9 @@ void main() {
expect(game.contains(alienBumper), isTrue);
});
// TODO(alestiago): Consider refactoring once the following is merged:
// https://github.com/flame-engine/flame/pull/1538
// ignore: public_member_api_docs
flameTester.test('closes bloc when removed', (game) async {
final bloc = MockAlienBumperCubit();
whenListen(

@ -43,6 +43,9 @@ void main() {
expect(game.contains(bumper), isTrue);
});
// TODO(alestiago): Consider refactoring once the following is merged:
// https://github.com/flame-engine/flame/pull/1538
// ignore: public_member_api_docs
flameTester.test('closes bloc when removed', (game) async {
final bloc = MockDashNestBumperCubit();
whenListen(

@ -85,6 +85,9 @@ void main() {
expect(() => GoogleLetter(6), throwsA(isA<RangeError>()));
});
// TODO(alestiago): Consider refactoring once the following is merged:
// https://github.com/flame-engine/flame/pull/1538
// ignore: public_member_api_docs
flameTester.test('closes bloc when removed', (game) async {
final bloc = MockGoogleLetterCubit();
whenListen(

@ -41,6 +41,9 @@ void main() {
expect(game.contains(sparkyBumper), isTrue);
});
// TODO(alestiago): Consider refactoring once the following is merged:
// https://github.com/flame-engine/flame/pull/1538
// ignore: public_member_api_docs
flameTester.test('closes bloc when removed', (game) async {
final bloc = MockSparkyBumperCubit();
whenListen(

Loading…
Cancel
Save