blob: 9dbe2bc77b71ac8f2d5faff0e60956114a1d5abf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* Testing non Gonk-specific code path
*/
function run_test() {
Components.utils.import("resource:///modules/LogCapture.jsm");
run_next_test();
}
// 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();
});
|