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 1
1
{
2
2
"name" : " webrtc-utilities" ,
3
- "version" : " 0.0.2 " ,
3
+ "version" : " 0.0.5 " ,
4
4
"author" : " The WebRTC project authors (https://www.webrtc.org/)" ,
5
5
"description" : " WebRTC test framework utilities." ,
6
6
"license" : " BSD-3-Clause" ,
18
18
},
19
19
"scripts" : {
20
20
"prepublish" : " grunt githooks" ,
21
- "test" : " grunt && test/run -tests"
21
+ "test" : " grunt && ./ test/start -tests.sh "
22
22
},
23
23
"devDependencies" : {
24
24
"grunt" : " ^0.4.5" ,
Original file line number Diff line number Diff line change 6
6
# tree.
7
7
#! /bin/sh
8
8
9
- # Run testling with a default set of parameters
9
+ # Run with a default set of parameters
10
10
BINDIR=./browsers/bin
11
11
export BROWSER=${BROWSER-chrome}
12
12
export 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