| OLD | NEW |
| 1 'use strict'; | 1 'use strict'; |
| 2 promise_test(() => { | 2 promise_test(() => { |
| 3 return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter') | 3 return setBluetoothFakeAdapter('DisconnectingHealthThermometerAdapter') |
| 4 .then(() => requestDeviceWithKeyDown({ | 4 .then(() => requestDeviceWithKeyDown({ |
| 5 filters: [{services: ['health_thermometer']}], | 5 filters: [{services: ['health_thermometer']}], |
| 6 optionalServices: [request_disconnection_service_uuid]})) | 6 optionalServices: [request_disconnection_service_uuid]})) |
| 7 .then(device => device.gatt.connect()) | 7 .then(device => device.gatt.connect()) |
| 8 .then(gattServer => { | 8 .then(gattServer => { |
| 9 let services; | 9 let services; |
| 10 return gattServer | 10 return gattServer |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 error)); | 41 error)); |
| 42 promises = promises.then(() => | 42 promises = promises.then(() => |
| 43 assert_promise_rejects_with_message( | 43 assert_promise_rejects_with_message( |
| 44 service.getCharacteristics('measurement_interval'), | 44 service.getCharacteristics('measurement_interval'), |
| 45 error)); | 45 error)); |
| 46 } | 46 } |
| 47 return promises; | 47 return promises; |
| 48 }); | 48 }); |
| 49 }, 'Calls on services after device disconnects and we reconnect. ' + | 49 }, 'Calls on services after device disconnects and we reconnect. ' + |
| 50 'Should reject with InvalidStateError.'); | 50 'Should reject with InvalidStateError.'); |
| OLD | NEW |