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
631 B
JavaScript
20 lines
631 B
JavaScript
'use strict';
|
|
|
|
test(t => {
|
|
let result = new USBOutTransferResult('ok', 42);
|
|
assert_equals(result.status, 'ok');
|
|
assert_equals(result.bytesWritten, 42);
|
|
|
|
result = new USBOutTransferResult('stall');
|
|
assert_equals(result.status, 'stall');
|
|
assert_equals(result.bytesWritten, 0);
|
|
}, 'Can construct USBOutTransferResult');
|
|
|
|
test(t => {
|
|
assert_throws_js(TypeError, () => new USBOutTransferResult('invalid_status'));
|
|
}, 'Cannot construct USBOutTransferResult with an invalid status');
|
|
|
|
test(t => {
|
|
assert_throws_js(TypeError, () => new USBOutTransferResult());
|
|
}, 'Cannot construct USBOutTransferResult without a status');
|