2014-08-22 12:32:00 +04:00
|
|
|
/**
|
2015-01-26 21:16:00 +03:00
|
|
|
* Testing non Gonk-specific code path
|
2014-08-22 12:32:00 +04:00
|
|
|
*/
|
|
|
|
function run_test() {
|
2014-11-12 08:31:00 +03:00
|
|
|
Components.utils.import("resource:///modules/LogCapture.jsm");
|
2015-01-26 21:16:00 +03:00
|
|
|
run_next_test();
|
2015-01-09 16:04:04 +03:00
|
|
|
}
|
2015-01-26 21:16:00 +03:00
|
|
|
|
|
|
|
// Trivial test just to make sure we have no syntax error
|
|
|
|
add_test(function test_logCapture_loads() {
|
|
|
|
ok(LogCapture, "LogCapture object exists");
|
|
|
|
run_next_test();
|
|
|
|
});
|