-
Notifications
You must be signed in to change notification settings - Fork 58
Closed
Description
it('should encode/decode empty payloads', function () {
encPayload([], function(data) {
decPayload(data,
function (packet, index, total) {
expect(packet.type).to.eql('open');
var isLast = index + 1 == total;
expect(isLast).to.eql(true);
});
});
});This test did not pass because it did not execute the assertion
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels