mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-03 12:24:54 +03:00
11 lines
208 B
Bash
11 lines
208 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# script which is run by the travis build (after `npm run test`).
|
||
|
#
|
||
|
# clones riot-web develop and runs the tests against our version of react-sdk.
|
||
|
|
||
|
set -ev
|
||
|
|
||
|
scripts/travis/build.sh
|
||
|
npm run test
|