From 317e8237e270d42a3bc79f89aaa5932ba834469e Mon Sep 17 00:00:00 2001 From: Awilum Date: Tue, 3 Nov 2020 16:26:01 +0300 Subject: [PATCH] feat(tests): update tests for Plugins #477 --- tests/Foundation/PluginsTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Foundation/PluginsTest.php b/tests/Foundation/PluginsTest.php index 2240d159..b209b781 100644 --- a/tests/Foundation/PluginsTest.php +++ b/tests/Foundation/PluginsTest.php @@ -7,6 +7,8 @@ use Atomastic\Strings\Strings; beforeEach(function() { // Create sandbox plugin + filesystem()->directory(PATH['project'])->create(0755, true); + filesystem()->directory(PATH['project'] . '/plugins')->create(0755, true); filesystem()->directory(PATH['project'] . '/plugins/sandbox')->create(0755, true); filesystem()->directory(PATH['project'] . '/plugins/sandbox/lang/')->create(0755, true); filesystem()->file(PATH['project'] . '/plugins/sandbox/lang/en_US.yaml')->put('sandbox_title: Sandbox');