From 26d577f9c560e244a3aaac0034215e80b1155456 Mon Sep 17 00:00:00 2001 From: Brian Faust Date: Wed, 5 May 2021 05:07:17 +0300 Subject: [PATCH] separate directory and path by / --- src/Pest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Pest.php b/src/Pest.php index 5950785e..8a9ff6ac 100644 --- a/src/Pest.php +++ b/src/Pest.php @@ -11,5 +11,5 @@ function version(): string function testDirectory(string $file = ''): string { - return TestSuite::getInstance()->testPath . $file; + return TestSuite::getInstance()->testPath . '/' . $file; }