mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
Skip Audits (2) (#53837)
This commit is contained in:
parent
4851888864
commit
bcc7961d00
@ -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 = '''
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user