Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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));

Expand All @@ -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 {
Expand Down
Loading