OLD | NEW |
(Empty) | |
| 1 { |
| 2 "states": [ |
| 3 ["clean", ["chrome_not_installed.prop", |
| 4 "chromeframe_not_installed.prop"]], |
| 5 ["chrome_installed", ["chrome_installed.prop", |
| 6 "chromeframe_not_installed.prop"]], |
| 7 ["chromeframe_installed", ["chrome_not_installed.prop", |
| 8 "chromeframe_installed.prop"]] |
| 9 ], |
| 10 "actions": [ |
| 11 ["install chrome", "mini_installer.exe --chrome --multi-install"], |
| 12 ["uninstall chrome", "mini_installer.exe --chrome --uninstall"] |
| 13 ], |
| 14 "tests": [ |
| 15 ["clean", "install chrome", "chrome_installed", "uninstall chrome", "clean"] |
| 16 ] |
| 17 } |
OLD | NEW |