From 03cf4ef3e4e2b14a6f9e9220e01323d2e2eaa063 Mon Sep 17 00:00:00 2001 From: Nico Verbruggen Date: Thu, 6 Oct 2022 23:35:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20Added=20various=20TODO=20items?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- phpmon/Common/Testables/TestableShell.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/phpmon/Common/Testables/TestableShell.swift b/phpmon/Common/Testables/TestableShell.swift index 1a97a10..aae56b3 100644 --- a/phpmon/Common/Testables/TestableShell.swift +++ b/phpmon/Common/Testables/TestableShell.swift @@ -33,6 +33,8 @@ public class TestableShell: Shellable { didReceiveOutput: @escaping (String, ShellStream) -> Void, withTimeout timeout: TimeInterval ) async throws -> (Process, ShellOutput) { + // TODO: Add delay to track down issues + // TODO: Remove assertion assert(expectations.keys.contains(command), "No response declared for command: \(command)") guard let expectation = expectations[command] else {