You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -299,12 +299,13 @@ targets:
299
299
300
300
If you have many packages you might want to reuse the whole list of external steps. For that you'll have to create a `bdd_options.yaml` file in the root folder of your project with the following content:
301
301
```yaml
302
-
include: package:bdd_widget_test/bdd_options.yaml # if you want to reuse default steps as well
302
+
include: package:<package_a>/bdd_options.yaml # will include all steps defined in bdd_options.yaml of package_a
303
303
externalSteps:
304
-
- package:<your_package>/<your_step>.dart
304
+
- package:<package_b>/<your_step>.dart
305
+
- package:<package_c>/<your_step>.dart
305
306
```
306
307
307
-
Alternatively, ff you need just to include an external config, use the `include` option in the `build.yaml` config:
308
+
Alternatively, if you need just to include an external config, use the `include` option in the `build.yaml` config:
0 commit comments