mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 07:31:32 +00:00
14 lines
327 B
JavaScript
14 lines
327 B
JavaScript
/**
|
|
* 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();
|
|
});
|