Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update available platforms for test.sh #22958

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/DEVELOPER.md
Expand Up @@ -97,9 +97,10 @@ To run tests:
$ ./test.sh node # Run all angular tests on node

$ ./test.sh browser # Run all angular tests in browser

$ ./test.sh browserNoRouter # Optionally run all angular tests without router in browser

$ ./test.sh tools # Run angular tooling (not framework) tests
$ ./test.sh router # Optionally run only the router tests in browser
```

You should execute the 3 test suites before submitting a PR to github.
Expand Down
4 changes: 2 additions & 2 deletions test.sh
Expand Up @@ -6,8 +6,8 @@ if [ $# -eq 0 ]
then
echo "Angular test runner. (No platform specified)"
echo
echo "./test.sh [node|browser|browserNoRouter|router|tools] [--debug]"
echo "(--debug flag only relevant to 'node' and 'tools' testing - see https://github.com/angular/angular/blob/master/docs/DEBUG.md)"
echo "./test.sh [node|browser|browserNoRouter|router] [--debug]"
echo "(--debug flag only relevant to 'node' testing - see https://github.com/angular/angular/blob/master/docs/DEBUG.md)"
echo
else
cd `dirname $0`
Expand Down