Unverified Commit 0fa01b21 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

[flutter_tools] allow tool integration tests to quit on SIGINT (#136271)

fixes https://github.com/flutter/flutter/issues/136270
parent 09ed4f1f
......@@ -382,9 +382,8 @@ class NoopCrashReporter implements CrashReporter {
}
class LocalFileSystemBlockingSetCurrentDirectory extends LocalFileSystem {
LocalFileSystemBlockingSetCurrentDirectory() : super.test(
signals: LocalSignals.instance,
);
// Use [FakeSignals] so developers running the test suite can kill the test runner.
LocalFileSystemBlockingSetCurrentDirectory() : super.test(signals: FakeSignals());
@override
set currentDirectory(dynamic value) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment