honey 0.2.1 copy "honey: ^0.2.1" to clipboard
honey: ^0.2.1 copied to clipboard

The sweet side of testing. An end to end testing framework for Flutter.

example/main.dart

import 'package:flutter/material.dart';
import 'package:honey/honey.dart';

const kIsHoney = bool.fromEnvironment('HONEY');

void main() {
  if (kIsHoney) {
    HoneyWidgetsBinding.ensureInitialized();
  }

  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return Container();
  }
}
41
likes
110
pub points
72%
popularity

Publisher

verified publisherclickup.com

The sweet side of testing. An end to end testing framework for Flutter.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

antlr4, collection, flutter, flutter_test, intl

More

Packages that depend on honey