You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-26 17:03:12 +03:00
The crypto tests haven't been running since things got rearranged to expect
Olm in a global (41864d4). Reinstate them.
11 lines
163 B
Bash
Executable File
11 lines
163 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
npm run lint
|
|
|
|
# install Olm so that we can run the crypto tests.
|
|
npm install https://matrix.org/packages/npm/olm/olm-2.2.2.tgz
|
|
|
|
npm run test
|