Skip to content
This repository has been archived by the owner on Mar 30, 2018. It is now read-only.

Make Behat tests up and running #224

Merged
merged 1 commit into from
Apr 15, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions features/bootstrap/FilesystemContext.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ public function prepWorkingDirectory()
$this->workingDirectory = tempnam(sys_get_temp_dir(), 'humbug-behat');
$this->filesystem->remove($this->workingDirectory);
$this->filesystem->mkdir($this->workingDirectory);
$this->filesystem->symlink(__DIR__ . '/../../composer.json', $this->workingDirectory . '/composer.json');
$this->filesystem->symlink(__DIR__ . '/../../vendor', $this->workingDirectory . '/vendor');
chdir($this->workingDirectory);
}

Expand Down