24 lines
522 B
JavaScript
24 lines
522 B
JavaScript
/* 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();
|
|
}
|