This repository was archived by the owner on May 13, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Expand file tree Collapse file tree 3 files changed +24
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " webrtc-utilities" ,
3- "version" : " 0.0.2 " ,
3+ "version" : " 0.0.5 " ,
44 "author" : " The WebRTC project authors (https://www.webrtc.org/)" ,
55 "description" : " WebRTC test framework utilities." ,
66 "license" : " BSD-3-Clause" ,
1818 },
1919 "scripts" : {
2020 "prepublish" : " grunt githooks" ,
21- "test" : " grunt && test/run -tests"
21+ "test" : " grunt && ./ test/start -tests.sh "
2222 },
2323 "devDependencies" : {
2424 "grunt" : " ^0.4.5" ,
Original file line number Diff line number Diff line change 66# tree.
77#! /bin/sh
88
9- # Run testling with a default set of parameters
9+ # Run with a default set of parameters
1010BINDIR=./browsers/bin
1111export BROWSER=${BROWSER-chrome}
1212export BVER=${BVER-stable}
Original file line number Diff line number Diff line change 1+ #
2+ # Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
3+ #
4+ # Use of this source code is governed by a BSD-style license
5+ # that can be found in the LICENSE file in the root of the source
6+ # tree.
7+ #! /bin/sh
8+
9+ # Run with a default set of parameters
10+ BINDIR=./browsers/bin
11+ export BROWSER=${BROWSER-chrome}
12+ export BVER=${BVER-stable}
13+ BROWSERBIN=$BINDIR /$BROWSER -$BVER
14+ if [ ! -x $BROWSERBIN ]; then
15+ echo " Installing browser"
16+ ./node_modules/travis-multirunner/setup.sh
17+ fi
18+ echo " Starting browser"
19+ PATH=$PATH :./node_modules/.bin
20+
21+ node test/run-tests.js
You can’t perform that action at this time.
0 commit comments