1
0
mirror of https://github.com/flarum/core.git synced 2025-08-12 11:24:30 +02:00

Extension Tests (#9)

This commit is contained in:
Sami Mazouz
2021-11-08 20:22:07 +01:00
committed by GitHub
parent 5cef9ad52c
commit a9ff884231
17 changed files with 429 additions and 1003 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace Flarum\PackageManager\Tests\integration;
trait RefreshComposerSetup
{
public function tearDown(): void
{
$composerSetup = new SetupComposer();
@unlink($this->tmpDir().'/composer.lock');
$composerSetup->run();
$this->composer('install');
parent::tearDown();
}
}