diff --git a/packages/dart_frog_cli/e2e/test/daemon/dev_server_domain_test.dart b/packages/dart_frog_cli/e2e/test/daemon/dev_server_domain_test.dart index 306ce3904..3dec414af 100644 --- a/packages/dart_frog_cli/e2e/test/daemon/dev_server_domain_test.dart +++ b/packages/dart_frog_cli/e2e/test/daemon/dev_server_domain_test.dart @@ -304,10 +304,7 @@ void main() { expect(exitCode, equals(0)); }); - testServer( - // TODO(renancaraujo): this fails on linux: https://github.com/dart-frog-dev/dart_frog/issues/807 - skip: Platform.isLinux, - 'GET on project 1 server 1: connection refused', (host) async { + testServer('GET on project 1 server 1: connection refused', (host) async { final responseFuture = http.get(Uri.parse(host)); await expectLater( @@ -318,10 +315,7 @@ void main() { testServer( port: project2ServerPort, - // TODO(renancaraujo): this fails on linux: https://github.com/dart-frog-dev/dart_frog/issues/807 - skip: Platform.isLinux, 'GET / on project 2: connection refused', - (host) async { final responseFuture = http.get(Uri.parse(host)); @@ -337,8 +331,6 @@ void main() { testServer( port: project1Server2Port, 'GET / on project 1 server 2: connection refused', - // TODO(renancaraujo): this fails on linux: https://github.com/dart-frog-dev/dart_frog/issues/807 - skip: Platform.isLinux, (host) async { await expectLater( () async {