Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
bcc7961d
Unverified
Commit
bcc7961d
authored
Apr 08, 2020
by
Kate Lovett
Committed by
GitHub
Apr 08, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Skip Audits (2) (#53837)
parent
48518888
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
7 deletions
+10
-7
run_test.dart
dev/devicelab/test/run_test.dart
+1
-1
dialog_test.dart
packages/flutter/test/cupertino/dialog_test.dart
+1
-1
change_notifier_test.dart
packages/flutter/test/foundation/change_notifier_test.dart
+1
-1
diagnostics_test.dart
packages/flutter/test/foundation/diagnostics_test.dart
+1
-1
service_extensions_test.dart
...ages/flutter/test/foundation/service_extensions_test.dart
+3
-2
stack_frame_test.dart
packages/flutter/test/foundation/stack_frame_test.dart
+3
-1
No files found.
dev/devicelab/test/run_test.dart
View file @
bcc7961d
...
...
@@ -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/5
901
},
skip:
true
);
// https://github.com/flutter/flutter/issues/5
3707
test
(
'exits with code 1 when results are mixed'
,
()
async
{
await
expectScriptResult
(<
String
>[
...
...
packages/flutter/test/cupertino/dialog_test.dart
View file @
bcc7961d
...
...
@@ -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
...
...
packages/flutter/test/foundation/change_notifier_test.dart
View file @
bcc7961d
...
...
@@ -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
();
...
...
packages/flutter/test/foundation/diagnostics_test.dart
View file @
bcc7961d
...
...
@@ -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
(
...
...
packages/flutter/test/foundation/service_extensions_test.dart
View file @
bcc7961d
...
...
@@ -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
);
});
}
packages/flutter/test/foundation/stack_frame_test.dart
View file @
bcc7961d
...
...
@@ -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
=
'''
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment