Skip to content

Commit 6e6f2f3

Browse files
committed
tests: removed discovery exclusion from test generation scripts
1 parent 4921853 commit 6e6f2f3

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

scripts/build-platforms-generate.sh

-4
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,6 @@ printf "\n"
5757

5858
# Each test directory has its own job
5959
for test_dir in tests/**/*/; do
60-
# Ignore discovery domain for now
61-
if [[ "$test_dir" =~ discovery ]]; then
62-
continue
63-
fi
6460
test_files=("$test_dir"*.test.ts)
6561
if [ ${#test_files[@]} -eq 0 ]; then
6662
continue

scripts/check-test-generate.sh

-4
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ printf "\n"
4848

4949
# Each test directory has its own job
5050
for test_dir in tests/**/*/; do
51-
# Ignore discovery domain for now
52-
if [[ "$test_dir" =~ discovery ]]; then
53-
continue
54-
fi
5551
test_files=("$test_dir"*.test.ts)
5652
if [ ${#test_files[@]} -eq 0 ]; then
5753
continue

0 commit comments

Comments
 (0)