mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
2.6 KiB
2.6 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning.
[Unreleased]
v0.2.0 (2020-06-14)
Adds
--initoption to install Pest on a new blank project (70b3c7e)- pending higher orders tests aka tests without description (aa1917c)
Fixed
Changed
helpers.phpstub provides now namespaced functions- functions provided by plugins are now namespaced functions:
use function Pest\Faker\faker;
it('foo', function () {
$name = faker()->name;
});
v0.1.5 (2020-05-24)
Fixed
- Missing default decorated output on coverage (88d2391)
v0.1.4 (2020-05-24)
Added
- Support to Lumen on artisan commands (#18)
Fixed
- Mockery tests without assertions being considered risky (415f571)
v0.1.3 (2020-05-21)
Added
Plugin::uses()method for making traits globally available (6c4be01)
v0.1.2 (2020-05-15)
Added
- Support to custom helpers (#7)
v0.1.1 (2020-05-14)
Added
testfunction without any arguments returns the current test case (6fc55be)
Fixed
- "No coverage driver error" now returns proper error on Laravel (28d8822)
v0.1.0 (2020-05-09)
Added
- First version