Unverified Commit bcc7961d authored by Kate Lovett's avatar Kate Lovett Committed by GitHub

Skip Audits (2) (#53837)

parent 48518888
......@@ -53,7 +53,7 @@ void main() {
test('exits with code 1 when fails to connect', () async {
await expectScriptResult(<String>['smoke_test_setup_failure'], 1);
}, skip: true); // https://github.com/flutter/flutter/issues/5901
}, skip: true); // https://github.com/flutter/flutter/issues/53707
test('exits with code 1 when results are mixed', () async {
await expectScriptResult(<String>[
......
......@@ -852,7 +852,7 @@ void main() {
);
// We must explicitly cause an "up" gesture to avoid a crash.
// todo(mattcarroll) remove this call when #19540 is fixed
// todo(mattcarroll) remove this call, https://github.com/flutter/flutter/issues/19540
await gesture.up();
}, skip: isBrowser); // https://github.com/flutter/flutter/issues/52960
......
......@@ -105,7 +105,7 @@ void main() {
expect(log, <String>['badListener', 'listener1', 'listener2']);
expect(tester.takeException(), isNullThrownError);
log.clear();
}, skip: isBrowser);
});
test('ChangeNotifier with mutating listener', () {
final TestNotifier test = TestNotifier();
......
......@@ -1232,7 +1232,7 @@ void main() {
expect(missing.isFiltered(DiagnosticLevel.info), isFalse);
validateObjectFlagPropertyJsonSerialization(present);
validateObjectFlagPropertyJsonSerialization(missing);
}, skip: isBrowser);
}, skip: isBrowser); // https://github.com/flutter/flutter/issues/54221
test('describe bool property', () {
final FlagProperty yes = FlagProperty(
......
......@@ -716,12 +716,13 @@ void main() {
expect(trace, contains('dart:core,Object,Object.\n'));
expect(trace, contains('package:test_api/test_api.dart,::,test\n'));
expect(trace, contains('service_extensions_test.dart,::,main\n'));
}, skip: isBrowser);
}, skip: isBrowser); // Compilation trace is Dart VM specific and not
// supported in browsers.
test('Service extensions - fastReassemble', () async {
Map<String, dynamic> result;
result = await binding.testExtension('fastReassemble', <String, String>{'class': 'Foo'});
expect(result, containsPair('Success', 'true'));
}, skip: isBrowser);
});
}
......@@ -68,7 +68,9 @@ void main() {
expect(frames.contains(StackFrame.stackOverFlowElision), true);
}
expect(overflowed, true);
}, skip: isBrowser);
}, skip: isBrowser); // The VM test harness can handle a stack overflow, but
// the browser cannot - running this test in a browser will cause it to become
// unresponsive.
}
const String stackString = '''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment