作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
因此,在稀缺的introduction to inegration testing中,您应该使用
flutter drive --target=test_driver/app.dart
flutter drive --help
最佳答案
尽管似乎没有out of the box
方法/方法仅运行组或特定测试,但是我们可以使用flutter_gherkin包来实现。它使用了 cucumber 和 cucumber 框架的组合,并具有我们可以指定要运行的测试的标签。
您可以阅读有关它的更多信息here。
基本上,在软件包提供的配置文件中,您可以指定以下内容:
..targetAppPath = "test_driver/app.dart"
..tagExpression = "@smoke"
..exitAfterTestRun = true;
dart test_driver/app_test.dart --tags @smoke
关于flutter - flutter 驱动器:如何仅运行一组或测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59926987/
我是一名优秀的程序员,十分优秀!