|
1 /* Any copyright is dedicated to the Public Domain. |
|
2 http://creativecommons.org/publicdomain/zero/1.0/ */ |
|
3 |
|
4 /* |
|
5 * The list of phases mapped to their corresponding profiles. The object |
|
6 * here must be in strict JSON format, as it will get parsed by the Python |
|
7 * testrunner (no single quotes, extra comma's, etc). |
|
8 */ |
|
9 |
|
10 var phases = { "phase1": "profile1", |
|
11 "phase2": "profile2" }; |
|
12 |
|
13 /* |
|
14 * Test phases |
|
15 */ |
|
16 |
|
17 Phase('phase1', [ |
|
18 [RunMozmillTest, 'mozmill_sanity.js'], |
|
19 ]); |
|
20 |
|
21 Phase('phase2', [ |
|
22 [Sync], |
|
23 [RunMozmillTest, 'mozmill_sanity2.js'], |
|
24 ]); |