File tree 2 files changed +3
-26
lines changed
2 files changed +3
-26
lines changed Original file line number Diff line number Diff line change @@ -131,11 +131,11 @@ flutter drive --target=./test_driver/firebase_auth_e2e.dart --release -d chrome
131
131
### Using Melos
132
132
133
133
To help aid developer workflow, Melos provides a number of commands to quickly run
134
- tests against plugins. For example, to run all e2e tests across all plugins at once,
134
+ tests against plugins. For example, to run all tests across all plugins at once,
135
135
run the following command from the root of your cloned repository:
136
136
137
137
``` bash
138
- melos run test:e2e
138
+ melos run test
139
139
```
140
140
141
141
A full list of all commands can be found within the [ ` melos.yaml ` ] ( https://github.com/firebase/flutterfire/blob/master/melos.yaml )
Original file line number Diff line number Diff line change @@ -120,8 +120,7 @@ scripts:
120
120
test:all :
121
121
run : |
122
122
melos run test --no-select && \
123
- melos run test:web --no-select && \
124
- melos run test:e2e --no-select
123
+ melos run test:web --no-select
125
124
description : |
126
125
Run all tests available.
127
126
@@ -148,28 +147,6 @@ scripts:
148
147
- test
149
148
scope : ' *web*'
150
149
151
- test:e2e :
152
- run : |
153
- melos exec -c 1 --fail-fast -- \
154
- "flutter drive --no-pub --target=./test_driver/driver_e2e.dart"
155
- description : |
156
- Run all e2e tests.
157
- select-package :
158
- dir-exists :
159
- - test_driver
160
- scope : ' *tests*'
161
-
162
- test:e2e:web :
163
- run : |
164
- melos exec -c 1 --fail-fast -- \
165
- "flutter drive --no-pub --target=./test_driver/driver_e2e.dart -d chrome"
166
- description : |
167
- Run all e2e tests on web platform. Please ensure you have "chromedriver" installed and running.
168
- select-package :
169
- dir-exists :
170
- - test_driver
171
- scope : ' *tests*'
172
-
173
150
clean:deep :
174
151
run : git clean -x -d -f -q
175
152
description : Clean things very deeply, can be used to establish "pristine checkout" status.
You can’t perform that action at this time.
0 commit comments