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
1d2e62b7
Unverified
Commit
1d2e62b7
authored
2 years ago
by
Jonah Williams
Committed by
GitHub
2 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove unsound mode web test (#118256)
parent
3cee38e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
test.dart
dev/bots/test.dart
+0
-1
null_assert_main.dart
dev/integration_tests/web/lib/null_assert_main.dart
+0
-24
No files found.
dev/bots/test.dart
View file @
1d2e62b7
...
...
@@ -1236,7 +1236,6 @@ Future<void> _runWebLongRunningTests() async {
()
=>
_runWebDebugTest
(
'lib/framework_stack_trace.dart'
),
()
=>
_runWebDebugTest
(
'lib/web_directory_loading.dart'
),
()
=>
_runWebDebugTest
(
'test/test.dart'
),
()
=>
_runWebDebugTest
(
'lib/null_assert_main.dart'
,
enableNullSafety:
true
),
()
=>
_runWebDebugTest
(
'lib/null_safe_main.dart'
,
enableNullSafety:
true
),
()
=>
_runWebDebugTest
(
'lib/web_define_loading.dart'
,
additionalArguments:
<
String
>[
...
...
This diff is collapsed.
Click to expand it.
dev/integration_tests/web/lib/null_assert_main.dart
deleted
100644 → 0
View file @
3cee38e8
// Copyright 2014 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore_for_file: enable_null_safety
// @dart = 2.8
import
'null_enabled_api.dart'
;
void
main
(
)
{
dynamic
error
;
try
{
// Validate that a generated null assertion is thrown.
methodThatAcceptsNonNull
(
null
);
}
catch
(
err
)
{
error
=
err
;
}
if
(
error
is
AssertionError
)
{
print
(
'--- TEST SUCCEEDED ---'
);
}
else
{
print
(
'--- TEST FAILED ---'
);
}
}
This diff is collapsed.
Click to expand it.
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