File tree 1 file changed +7
-3
lines changed
packages/integration_test
1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -11,8 +11,11 @@ Add a dependency on the `integration_test` and `flutter_test` package in the
11
11
` pubspec.yaml ` of the example app:
12
12
13
13
``` yaml
14
- integration_test :
15
- sdk : flutter
14
+ dev_dependencies :
15
+ integration_test :
16
+ sdk : flutter
17
+ flutter_test :
18
+ sdk : flutter
16
19
` ` `
17
20
18
21
Create a ` integration_test/` directory for your package. In this directory,
@@ -126,7 +129,7 @@ void main() {
126
129
` ` `
127
130
128
131
You can use a driver script to pull in the screenshot from the device.
129
- This way, you can store the images locally on your computer. On iOS, the
132
+ This way, you can store the images locally on your computer. On iOS, the
130
133
screenshot will also be available in Xcode test results.
131
134
132
135
**test_driver/integration_test.dart**
277
280
```
278
281
279
282
To build ` integration_test/foo_test.dart ` from the command line, run:
283
+
280
284
``` sh
281
285
flutter build ios --config-only integration_test/foo_test.dart
282
286
```
You can’t perform that action at this time.
0 commit comments