|
2 | 2 | "framework": "jasmine", |
3 | 3 | "parallel": 5, |
4 | 4 | "on_start": { |
5 | | - "command": "kill -9 $(ps -A | grep BrowserStackLocal | grep -v grep | cut -d ' ' -f2); node start-BrowserStackLocal.js &", |
| 5 | + "command": "kill -9 $(ps -A | grep BrowserStackLocal | grep -v grep | cut -d ' ' -f2); ./bin/start-BrowserStackLocal.js &", |
6 | 6 | "wait_for_text": "Tunnel started", |
7 | 7 | "wait_for_text_timeout": 300000 |
8 | 8 | }, |
9 | | - "on_exit": "node stop-BrowserStackLocal.js `cat browserStackLocal.pid`; rm browserStackLocal.pid", |
| 9 | + "on_exit": "./bin/stop-BrowserStackLocal.js `cat browserStackLocal.pid`; rm browserStackLocal.pid", |
10 | 10 | "launchers": { |
11 | 11 | "bs_opera": { |
12 | | - "command": "node run_on_browserstack.js Windows 10 opera latest nil <url>", |
| 12 | + "exe": "./bin/run_on_browserstack.js", |
| 13 | + "args": [ "Windows", "10", "opera", "latest", "" ], |
13 | 14 | "protocol": "browser" |
14 | 15 | }, |
15 | 16 |
|
16 | 17 | "bs_firefox": { |
17 | | - "command": "node run_on_browserstack.js Windows 10 firefox latest nil <url>", |
| 18 | + "exe": "./bin/run_on_browserstack.js", |
| 19 | + "args": [ "Windows", "10", "firefox", "latest", "" ], |
18 | 20 | "protocol": "browser" |
19 | 21 | }, |
20 | 22 |
|
21 | 23 | "bs_chrome": { |
22 | | - "command": "node run_on_browserstack.js 'OS X' 'El Capitan' chrome latest nil <url>", |
| 24 | + "exe": "./bin/run_on_browserstack.js", |
| 25 | + "args": [ "OS X", "El Capitan", "chrome", "latest", "" ], |
23 | 26 | "protocol": "browser" |
24 | 27 | }, |
25 | 28 |
|
26 | 29 | "bs_safari_71": { |
27 | | - "command": "node run_on_browserstack.js 'OS X' Mavericks safari 7.1 nil <url>", |
| 30 | + "exe": "./bin/run_on_browserstack.js", |
| 31 | + "args": [ "OS X", "Mavericks", "safari", "7.1", "" ], |
28 | 32 | "protocol": "browser" |
29 | 33 | }, |
30 | 34 |
|
31 | 35 | "bs_safari_51": { |
32 | | - "command": "node run_on_browserstack.js 'OS X' 'Snow Leopard' safari 5.1 nil <url>", |
| 36 | + "exe": "./bin/run_on_browserstack.js", |
| 37 | + "args": [ "OS X", "Snow Leopard", "safari", "5.1", "" ], |
33 | 38 | "protocol": "browser" |
34 | 39 | }, |
35 | 40 |
|
36 | 41 | "bs_ie_11": { |
37 | | - "command": "node run_on_browserstack.js Windows 10 ie 11.0 nil <url>", |
| 42 | + "exe": "./bin/run_on_browserstack.js", |
| 43 | + "args": [ "Windows", "10", "ie", "11.0", "" ], |
38 | 44 | "protocol": "browser" |
39 | 45 | }, |
40 | 46 |
|
41 | | - "bs_ie_9": { |
42 | | - "command": "node run_on_browserstack.js Windows 7 ie 9.0 nil <url>", |
43 | | - "protocol": "browser" |
44 | | - }, |
45 | | - |
46 | | - "bs_ie_8": { |
47 | | - "command": "node run_on_browserstack.js Windows 7 ie 8.0 nil <url>", |
| 47 | + "bs_android_S4": { |
| 48 | + "exe": "./bin/run_on_browserstack.js", |
| 49 | + "args": [ "android", "4.3", "android", "", "Samsung Galaxy S4" ], |
48 | 50 | "protocol": "browser" |
49 | 51 | } |
50 | 52 | }, |
|
56 | 58 | "bs_safari_71", |
57 | 59 | "bs_safari_51", |
58 | 60 | "bs_ie_11", |
59 | | - "bs_ie_9", |
60 | | - "bs_ie_8" |
| 61 | + "bs_android_S4" |
| 62 | + ], |
| 63 | + "src_files": [ |
| 64 | + "test/*" |
61 | 65 | ] |
62 | 66 | } |
0 commit comments