mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-02 17:59:55 +00:00
22 lines
509 B
JavaScript
22 lines
509 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
const { JSONPacket, BulkPacket } =
|
|
devtools.require("devtools/toolkit/transport/packets");
|
|
|
|
function run_test() {
|
|
add_test(test_packet_done);
|
|
run_next_test();
|
|
}
|
|
|
|
// Ensure done can be checked without getting an error
|
|
function test_packet_done() {
|
|
let json = new JSONPacket();
|
|
do_check_false(!!json.done);
|
|
|
|
let bulk = new BulkPacket();
|
|
do_check_false(!!bulk.done);
|
|
|
|
run_next_test();
|
|
}
|