Automatic update from web-platform-tests Replace some "assert_throws(FooError(), stuff)" calls with assert_throws_js. (#21378) This diff was generated by running: find . -type f -print0 | xargs -0 perl -pi -e 'BEGIN { $/ = undef; } s/assert_throws\(([ \n]*)([A-Za-z]*Error) *\(\) *(, *.)/assert_throws_js(\1\2\3/gs' and then: 1) Manually editing dom/nodes/Element-matches.js to get the TypeError constructor from the element's global. 2) Manually editing dom/nodes/ParentNode-querySelector-All.js to get the TypeError constructor from root's global, whether "root" is a Document or some other kind of node. Co-authored-by: Boris Zbarsky <bzbarsky@mit.edu> -- wpt-commits: f06523527a0735d23879f4e687d6efc095f780b7 wpt-pr: 21378
20 lines
683 B
JavaScript
20 lines
683 B
JavaScript
'use strict';
|
|
|
|
test(t => {
|
|
let packets = [
|
|
new USBIsochronousOutTransferPacket('ok', 42),
|
|
new USBIsochronousOutTransferPacket('stall')
|
|
];
|
|
|
|
let result = new USBIsochronousOutTransferResult(packets);
|
|
assert_equals(result.packets.length, 2);
|
|
assert_equals(result.packets[0].status, 'ok');
|
|
assert_equals(result.packets[0].bytesWritten, 42);
|
|
assert_equals(result.packets[1].status, 'stall');
|
|
assert_equals(result.packets[1].bytesWritten, 0);
|
|
}, 'Can construct a USBIsochronousOutTransferResult');
|
|
|
|
test(t => {
|
|
assert_throws_js(TypeError, () => new USBIsochronousOutTransferResult());
|
|
}, 'Cannot construct a USBIsochronousOutTransferResult without packets');
|