1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-07 20:10:08 +02:00

👌 Handle multiple modes w/ Xdebug menu item

This commit also fixes the width of the header items.
This commit is contained in:
2022-05-19 19:06:03 +02:00
parent e7f80ebce8
commit db8197df3d
7 changed files with 39 additions and 18 deletions

View File

@ -69,9 +69,4 @@ class PhpExtensionTest: XCTestCase {
XCTAssertEqual(PhpExtension.from(filePath: destination.path).first!.enabled, false)
}
func testCanRetrieveXdebugMode() throws {
let value = Command.execute(path: Paths.php, arguments: ["-r", "echo ini_get('xdebug.mode');"])
XCTAssertEqual(value, "coverage")
}
}