This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from webrtc/renameRunTest
Rename run-test>start-tests.sh to make it clearer
- Loading branch information
Showing
3 changed files
with
24 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# | ||
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. | ||
# | ||
# Use of this source code is governed by a BSD-style license | ||
# that can be found in the LICENSE file in the root of the source | ||
# tree. | ||
#!/bin/sh | ||
|
||
# Run with a default set of parameters | ||
BINDIR=./browsers/bin | ||
export BROWSER=${BROWSER-chrome} | ||
export BVER=${BVER-stable} | ||
BROWSERBIN=$BINDIR/$BROWSER-$BVER | ||
if [ ! -x $BROWSERBIN ]; then | ||
echo "Installing browser" | ||
./node_modules/travis-multirunner/setup.sh | ||
fi | ||
echo "Starting browser" | ||
PATH=$PATH:./node_modules/.bin | ||
|
||
node test/run-tests.js |