@@ -143,21 +143,25 @@ void main() {
143
143
await context.tearDown ();
144
144
});
145
145
146
- test ('emits DEBUGGER_READY and DEVTOOLS_LOAD events' , () async {
147
- await expectEventsDuring (
148
- [
149
- matchesEvent (DwdsEventKind .debuggerReady, {
150
- 'elapsedMilliseconds' : isNotNull,
151
- 'screen' : equals ('debugger' ),
152
- }),
153
- matchesEvent (DwdsEventKind .devToolsLoad, {
154
- 'elapsedMilliseconds' : isNotNull,
155
- 'screen' : equals ('debugger' ),
156
- }),
157
- ],
158
- () => keyboard.sendChord ([Keyboard .alt, 'd' ]),
159
- );
160
- });
146
+ test (
147
+ 'emits DEBUGGER_READY and DEVTOOLS_LOAD events' ,
148
+ () async {
149
+ await expectEventsDuring (
150
+ [
151
+ matchesEvent (DwdsEventKind .debuggerReady, {
152
+ 'elapsedMilliseconds' : isNotNull,
153
+ 'screen' : equals ('debugger' ),
154
+ }),
155
+ matchesEvent (DwdsEventKind .devToolsLoad, {
156
+ 'elapsedMilliseconds' : isNotNull,
157
+ 'screen' : equals ('debugger' ),
158
+ }),
159
+ ],
160
+ () => keyboard.sendChord ([Keyboard .alt, 'd' ]),
161
+ );
162
+ },
163
+ skip: 'https://github.com/dart-lang/webdev/issues/2181' ,
164
+ );
161
165
162
166
test ('emits DEVTOOLS_LAUNCH event' , () async {
163
167
await expectEventDuring (
0 commit comments