File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed
tests/serverpod_test_server/test_integration Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change 11// ignore_for_file: dead_code
22
33@Timeout (Duration (minutes: 1 ))
4- @Skip ( 'This is skipped due to flaky tests, issue to resolve this is tracked in '
5- 'https://github.com/serverpod/serverpod/issues/3431' )
4+ // Note, this test shall run non-concurrently,
5+ // which means the test tag 'integration' is not used.
66
77import 'dart:async' ;
88import 'dart:convert' ;
99import 'dart:io' ;
1010
1111import 'package:http/http.dart' ;
12- import 'package:serverpod_test/serverpod_test.dart' ;
1312import 'package:test/test.dart' ;
1413
1514void main () {
@@ -46,9 +45,7 @@ void main() {
4645
4746 var exitCode = await processOutput.process.exitCode;
4847 expect (exitCode, 0 );
49- },
50- timeout: const Timeout (Duration (seconds: 60 )),
51- tags: [defaultIntegrationTestTag]);
48+ }, timeout: const Timeout (Duration (seconds: 60 )));
5249
5350 group ('Given a running serverpod server' , () {
5451 test (
@@ -221,7 +218,7 @@ void main() {
221218 );
222219 expect (exitCode, 130 );
223220 }, skip: 'Dart HTTP server does not support this graceful shutdown' );
224- }, tags : [defaultIntegrationTestTag] );
221+ });
225222}
226223
227224typedef ProcessOutput = ({
You can’t perform that action at this time.
0 commit comments