Pest v0.2.0 Release Notes

Release Date: 2020-06-14 // almost 4 years ago
  • โž• Adds

    • --init option to install Pest on a new blank project (70b3c7e)
    • โœ… pending higher orders tests aka tests without description (aa1917c)

    ๐Ÿ›  Fixed

    • ๐Ÿ–จ --verbose and --colors options not being used by printers (#51)
    • ๐Ÿ missing support on windows (#61)

    ๐Ÿ”„ Changed

    • helpers.php stub provides now namespaced functions
    • ๐Ÿ”Œ functions provided by plugins are now namespaced functions:
    use function Pest\Faker\faker;
    
    it('foo', function () {
        $name = faker()->name;
    });