Skip to content

Commit 46b4c67

Browse files
committed
send SIGINT - ctrl-c - to end serve
1 parent c1451a2 commit 46b4c67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webdev/test/e2e_test.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,9 +111,9 @@ void main() {
111111
client.close(force: true);
112112
}
113113

114-
process.signal(ProcessSignal.SIGTERM);
114+
process.signal(ProcessSignal.SIGINT);
115115

116-
await process.shouldExit(-15);
116+
await process.shouldExit(0);
117117
});
118118
}
119119
});

0 commit comments

Comments
 (0)