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
55e183eb
Unverified
Commit
55e183eb
authored
Nov 09, 2020
by
Jonah Williams
Committed by
GitHub
Nov 09, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[null-safety] migrate hello_world to null safety (#70112)
* [null-safety] migrate flutter gallery to null safety
parent
21e80274
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
pubspec.yaml
examples/hello_world/pubspec.yaml
+1
-1
smoke_web_engine_test.dart
examples/hello_world/test_driver/smoke_web_engine_test.dart
+2
-3
No files found.
examples/hello_world/pubspec.yaml
View file @
55e183eb
...
...
@@ -2,7 +2,7 @@ name: hello_world
environment
:
# The pub client defaults to an <2.0.0 sdk constraint which we need to explicitly overwrite.
sdk
:
"
>=2.
0.0-dev.68.
0
<3.0.0"
sdk
:
"
>=2.
12.0-
0
<3.0.0"
dependencies
:
flutter
:
...
...
examples/hello_world/test_driver/smoke_web_engine_test.dart
View file @
55e183eb
...
...
@@ -2,6 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// @dart = 2.8
import
'dart:async'
;
import
'package:flutter_driver/flutter_driver.dart'
;
...
...
@@ -23,9 +24,7 @@ void main() {
// Close the connection to the driver after the tests have completed.
tearDownAll
(()
async
{
if
(
driver
!=
null
)
{
driver
.
close
();
}
driver
.
close
();
});
test
(
'title is correct'
,
()
async
{
...
...
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