sensor-data.js (394B)
1 'use strict'; 2 3 const kGeolocationSensorData = { 4 sensorName: 'GeolocationSensor', 5 permissionName: 'geolocation', 6 testDriverName: 'geolocation', 7 featurePolicyNames: ['geolocation'] 8 }; 9 10 const kGeolocationReadings = { 11 readings: [ 12 [1.12345, 2.12345, 3.12345, 0.95, 0.96, 4.12345, 5.123] 13 ], 14 expectedReadings: [ 15 [1.12345, 2.12345, 3.12345, 0.95, 0.96, 4.12345, 5.123] 16 ] 17 };