chromium/third_party/blink/web_tests/http/tests/inspector-protocol/emulation/emulation-sensor-override-update-not-overridden.js

(async function(/** @type {import('test_runner').TestRunner} */ testRunner) {
  const {page, session, dp} = await testRunner.startBlank(
      'Tests setSensorOverrideReadings fails if sensor is not overridden');

  testRunner.log(await dp.Emulation.setSensorOverrideReadings(
      {type: 'gyroscope', reading: {xyz: {x: 1, y: 2, z: 3}}}));

  testRunner.completeTest();
})