/test_assets

Access your assets folder from your Widget tests

Primary LanguageDartBSD 2-Clause "Simplified" LicenseBSD-2-Clause

test_assets

A small package that will help you to access your assets/ folder during testing.
Code was originally copied from the original Github Issue.

How to use?

Future<void> _pumpTag(final WidgetTester tester) async {
    await tester.runAsync(() => DiskAssetBundle.loadGlob(['fonts/**.ttf'])); //relative to your /assets folder
    return tester.pumpWidget(
      YourWidgetUnderTest()
    );
  }