File tree Expand file tree Collapse file tree 2 files changed +3
-26
lines changed Expand file tree Collapse file tree 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
131131### Using Melos
132132
133133To 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,
135135run the following command from the root of your cloned repository:
136136
137137``` bash
138- melos run test:e2e
138+ melos run test
139139```
140140
141141A 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:
120120 test:all :
121121 run : |
122122 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
125124 description : |
126125 Run all tests available.
127126
@@ -148,28 +147,6 @@ scripts:
148147 - test
149148 scope : ' *web*'
150149
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-
173150 clean:deep :
174151 run : git clean -x -d -f -q
175152 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