mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
Automatic update from web-platform-tests Remove inactive reviewers (#14798) This removes reviewers who have had more than three review requests in the past year but who haven't reviewed anything. Adds a few extra reviewers based on discussions in the PR thread looking for reviewers for directories that otherwise would've ended up with none. -- wpt-commits: a5f707c18b3d893a6e332994064911c2f11e800d wpt-pr: 14798 |
||
|---|---|---|
| .. | ||
| resources | ||
| generic-sensor-feature-policy-test.sub.js | ||
| generic-sensor-iframe-tests.sub.js | ||
| generic-sensor-tests.js | ||
| idlharness.https.window.js | ||
| META.yml | ||
| README.md | ||
| SensorErrorEvent-constructor.https.html | ||
The generic-sensor-tests.js tests require an implementation of
the GenericSensorTest interface, which should emulate platform
sensor backends. The GenericSensorTest interface is defined as:
class GenericSensorTest {
async initialize(); // Sets up the testing enviroment.
async reset(); // Frees the resources.
};
The Chromium implementation of the GenericSensorTest interface is located in
generic_sensor_mocks.js.
Other browser vendors should provide their own implementations of
the GenericSensorTest interface.
Known issue: a WebDriver extension is a better approach for the Generic Sensor tests automation.