1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-12-23 20:00:05 +01:00

Fix tests

This commit is contained in:
2022-10-06 23:00:21 +02:00
parent e2ab7f08ed
commit ed3622cc4e
6 changed files with 31 additions and 27 deletions

View File

@@ -10,8 +10,8 @@ import XCTest
class ValetVersionExtractorTest: XCTestCase {
func testDetermineValetVersion() {
let version = valet("--version", sudo: false)
func testDetermineValetVersion() async {
let version = await valet("--version", sudo: false)
XCTAssert(version.contains("Laravel Valet 2") || version.contains("Laravel Valet 3"))
}