| Index: third_party/WebKit/LayoutTests/bluetooth/notifications/event-after-starting.html
|
| diff --git a/third_party/WebKit/LayoutTests/bluetooth/notifications/event-after-starting.html b/third_party/WebKit/LayoutTests/bluetooth/notifications/event-after-starting.html
|
| deleted file mode 100644
|
| index b2d4cde6e8ff80c7b6775dec71b9e1f3806c345f..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/bluetooth/notifications/event-after-starting.html
|
| +++ /dev/null
|
| @@ -1,23 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../../resources/testharness.js"></script>
|
| -<script src="../../resources/testharnessreport.js"></script>
|
| -<script src="../../resources/bluetooth/bluetooth-helpers.js"></script>
|
| -<script>
|
| -'use strict';
|
| -promise_test(() => {
|
| - return setBluetoothFakeAdapter('HeartRateAdapter')
|
| - .then(() => requestDeviceWithKeyDown({
|
| - filters: [{services: ['heart_rate']}]}))
|
| - .then(device => device.gatt.connect())
|
| - .then(gattServer => gattServer.getPrimaryService('heart_rate'))
|
| - .then(service => service.getCharacteristic('heart_rate_measurement'))
|
| - .then(characteristic => {
|
| - return assert_event_fires_after_promise(
|
| - characteristic, 'startNotifications', 'characteristicvaluechanged')
|
| - .then(() => characteristic.stopNotifications())
|
| - .then(() => assert_no_events(characteristic,
|
| - 'characteristicvaluechanged'));
|
| - });
|
| -}, 'Starting notifications should fire an event and we should get no events ' +
|
| - 'after notifications are stopped.');
|
| -</script>
|
|
|