mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-04-30 07:19:20 +08:00
12 lines
307 B
Bash
12 lines
307 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
# This script lists all of the [Feature:.+] tests in our e2e suite.
|
||
|
|
#
|
||
|
|
# Usage: `scripts/list-feature-tests.sh`.
|
||
|
|
|
||
|
|
set -o errexit
|
||
|
|
set -o nounset
|
||
|
|
set -o pipefail
|
||
|
|
|
||
|
|
OPENIM_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
|
||
|
|
grep "\[Feature:\w+\]" "${OPENIM_ROOT}"/test/e2e/**/*.go -Eoh | LC_ALL=C sort -u
|