Skip to content

Commit e0af8b7

Browse files
committed
Remove test:e2e and test:e2e:web melos command
1 parent 42701f8 commit e0af8b7

File tree

2 files changed

+3
-26
lines changed

2 files changed

+3
-26
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ flutter drive --target=./test_driver/firebase_auth_e2e.dart --release -d chrome
131131
### Using Melos
132132

133133
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,
135135
run the following command from the root of your cloned repository:
136136

137137
```bash
138-
melos run test:e2e
138+
melos run test
139139
```
140140

141141
A full list of all commands can be found within the [`melos.yaml`](https://github.com/firebase/flutterfire/blob/master/melos.yaml)

melos.yaml

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)