Automatic update from web-platform-tests [WPT] Refactor WebUSB tests to use test-only-api.js Also switch to loading *.mojom.js from /gen/ instead of resources/chromium in preparation for launching official MojoJS support in WPT. This would not change the test results on Chromium waterfall (everything should continue to pass) or upstream WPT (tests currently fail because MojoJS isn't enabled). Move web_tests/usb to web_tests/wpt_internal/webusb so that these tests are served the same was as web_tests/external/wpt/webusb, making the resource URLs consistent and saving a special case in the helper function. Finally, remove unused .mojom.js files from WPT. Bug: 1094512 Change-Id: I75f3d1a7acf494e2c881c527618a496e907a9596 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2276999 Commit-Queue: Robert Ma <robertma@chromium.org> Reviewed-by: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/master@{#796122} -- wpt-commits: 2cb9d275a68141cf8879b7c496a36925420dd43b wpt-pr: 24927
23 lines
699 B
JavaScript
23 lines
699 B
JavaScript
// META: script=/resources/test-only-api.js
|
|
// META: script=/webusb/resources/fake-devices.js
|
|
// META: script=/webusb/resources/usb-helpers.js
|
|
|
|
'use strict';
|
|
|
|
usb_test(() => getFakeDevice()
|
|
.then(({ device }) => {
|
|
let evt = new USBConnectionEvent('connect', { device: device });
|
|
assert_equals(evt.type, 'connect');
|
|
assert_equals(evt.device, device);
|
|
}),
|
|
'Can construct a USBConnectionEvent with a device');
|
|
|
|
test(t => {
|
|
assert_throws_js(TypeError,
|
|
() => new USBConnectionEvent('connect', { device: null }));
|
|
assert_throws_js(TypeError,
|
|
() => new USBConnectionEvent('connect', {}));
|
|
}, 'Cannot construct a USBConnectionEvent without a device');
|
|
|
|
done();
|