blob: 7e1896555d6d054867bdcf40ab557a7e787b2814 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
const { JSONPacket, BulkPacket } =
require("devtools/shared/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();
}
|