mirror of https://github.com/zulip/zulip.git
Run node-based JS unit tests from test-all
(imported from commit 5bf9b690dfd3ac83296a58cf44a170960adaed39)
This commit is contained in:
parent
f258ce2127
commit
958955da23
|
@ -17,6 +17,7 @@ function run {
|
|||
|
||||
run 'clean repo' ./tools/clean-repo
|
||||
run 'lint checkers' ./tools/check-all
|
||||
run 'js unit tests' ./tools/test-js-with-node
|
||||
run 'server tests' ./tools/test-backend
|
||||
run 'web client tests' ./zephyr/tests/frontend/run
|
||||
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/bash -e
|
||||
|
||||
cd "$(dirname "$0")"/../zephyr/tests/frontend/node
|
||||
node test_message_tour.js
|
Loading…
Reference in New Issue