If you are interested in contributing to tus-js-client or just want to work on the library itself, this guide will provide you with instructions on how to setup the development environment. You must have Git, Node.js and Yarn installed to follow along.
# Clone the git repository
git clone [email protected]:tus/tus-js-client.git
cd tus-js-client
# Install dependencies
yarn install
# Build the library bundle and all test scripts
yarn run build
# Watch source files and rebuild when files get changes
yarn run watch
Tests are implemented using Jasmine and can be found in the test/
directory. These tests can be run in different environments:
- To run the tests inside Node.js use the command
yarn run test-node
. - To run the tests inside Puppeteer (an automated browser) use the command
yarn run test-puppeteer
. - To run the tests in your browser open
test/SpecRunner.html
in a browser and you should see a visual representation of the test results. No web server is required, you can openSpecRunner.html
using thefile:///
protocol. - To run the tests on BrowserStack's cloud testing infrastructure use
yarn run test-browserstack
. Before using this command, you have to set up your BrowserStack account by filling theBROWSERSTACK_USERNAME
andBROWSERSTACK_KEY
variables or else the command will fail.
Also note that you have to rebuild the library before you run the tests. So either you automatically let yarn run watch
listen for file changes and automatically rebuild the needed artifacts, or you run yarn run build
on your own before you execute the tests.