blob: 459a7a8211b4ea762c6924ec3b400713703c34de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const {
JSONPacket,
BulkPacket,
} = require("resource://devtools/shared/transport/packets.js");
function run_test() {
add_test(test_packet_done);
run_next_test();
}
// Ensure done can be checked without getting an error
function test_packet_done() {
const json = new JSONPacket();
Assert.ok(!json.done);
const bulk = new BulkPacket();
Assert.ok(!bulk.done);
run_next_test();
}
|