mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
docs: updates changelog
This commit is contained in:
@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
||||||
and this project adheres to [Semantic Versioning](http://semver.org/).
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
|
## [v1.12.0 (2021-07-26)](https://github.com/pestphp/pest/compare/v1.11.0...v1.12.0)
|
||||||
|
### Added
|
||||||
|
- `--force` option to override tests in `pest:test` artisan command ([#353](https://github.com/pestphp/pest/pull/353))
|
||||||
|
- Support for PHPUnit `^9.3.7` ([ca9d783](https://github.com/pestphp/pest/commit/ca9d783cf942a2caabc85ff7a728c7f28350c67a))
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- `beforeAll` and `afterAll` behind called multiple times per test ([#357](https://github.com/pestphp/pest/pull/357))
|
||||||
|
|
||||||
## [v1.11.0 (2021-07-21)](https://github.com/pestphp/pest/compare/v1.10.0...v1.11.0)
|
## [v1.11.0 (2021-07-21)](https://github.com/pestphp/pest/compare/v1.10.0...v1.11.0)
|
||||||
### Added
|
### Added
|
||||||
- Support for interacting with datasets in higher order tests ([#352](https://github.com/pestphp/pest/pull/352))
|
- Support for interacting with datasets in higher order tests ([#352](https://github.com/pestphp/pest/pull/352))
|
||||||
|
|||||||
@ -56,7 +56,7 @@ final class PestTestCommand extends Command
|
|||||||
File::makeDirectory(dirname($target), 0777, true, true);
|
File::makeDirectory(dirname($target), 0777, true, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (File::exists($target) and !(bool) $this->option('force')) {
|
if (File::exists($target) && !(bool) $this->option('force')) {
|
||||||
throw new InvalidConsoleArgument(sprintf('%s already exist', $target));
|
throw new InvalidConsoleArgument(sprintf('%s already exist', $target));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user