Flutter驱动程序:找不到测试文件

时间:2020-10-01 18:35:22

标签: flutter testing integration

我正在尝试运行flutter drive --target=test_driver/app.dart并收到错误消息:

Target file "test_driver/app.dart" not found.

所以我将路径更改为flutter drive --target=lib/test_driver/app.dart并收到错误消息:

Using device sdk gphone x86 arm.
Test file not found: /home/user/Documents/dev/flutter-app/test_driver/test_driver/app_test.dart.

这是我的项目结构:

flutter-app/
  lib/
    test_driver/
      app.dart
      app_test.dart

为什么找不到测试文件?

1 个答案:

答案 0 :(得分:0)

Flutter驱动程序希望test_driver目录是项目根目录的直接子目录。因此,我将其移至lib/之外,从而解决了该问题。