cypress-8.x-1.x-dev/tests/Unit/NpmRootFactoryTest.php
tests/Unit/NpmRootFactoryTest.php
<?php
namespace Drupal\Tests\cypress\Unit;
use Drupal\cypress\NpmRootFactory;
use Drupal\Tests\UnitTestCase;
class NpmRootFactoryTest extends UnitTestCase {
/**
* @return void
*/
function testNpmRootDirectory() {
$this->assertEquals('/app', (new NpmRootFactory('/app', [
'/app/features',
'/app/modules/a/tests/Cypress',
]))->getDirectory());
}
}
