File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -98,15 +98,15 @@ class TestContext {
98
98
late Handler ? _assetHandler;
99
99
100
100
Client get client => _client! ;
101
- late Client ? _client;
101
+ Client ? _client;
102
102
103
103
ExpressionCompilerService ? ddcService;
104
104
105
105
int get port => _port! ;
106
106
late int ? _port;
107
107
108
108
Directory get outputDir => _outputDir! ;
109
- late Directory ? _outputDir;
109
+ Directory ? _outputDir;
110
110
111
111
late WipConnection extensionConnection;
112
112
late AppConnection appConnection;
@@ -538,12 +538,12 @@ class TestContext {
538
538
}
539
539
540
540
Future <void > tearDown () async {
541
+ await _webRunner? .stop ();
541
542
await _webDriver? .quit (closeSession: true );
542
543
_chromeDriver? .kill ();
543
544
DartUri .currentDirectory = p.current;
544
545
await _daemonClient? .close ();
545
546
await ddcService? .stop ();
546
- await _webRunner? .stop ();
547
547
await _testServer? .stop ();
548
548
_client? .close ();
549
549
await _outputDir? .delete (recursive: true );
You can’t perform that action at this time.
0 commit comments