mirror of
https://github.com/pestphp/pest.git
synced 2026-03-09 17:27:22 +01:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b014e4b18 | |||
| 034715e8b1 | |||
| 669dc0da71 |
@ -358,8 +358,8 @@ final class TestCall
|
|||||||
public function todo(// @phpstan-ignore-line
|
public function todo(// @phpstan-ignore-line
|
||||||
array|string|null $note = null,
|
array|string|null $note = null,
|
||||||
array|string|null $assignee = null,
|
array|string|null $assignee = null,
|
||||||
array|string|null $issue = null,
|
array|string|int|null $issue = null,
|
||||||
array|string|null $pr = null,
|
array|string|int|null $pr = null,
|
||||||
): self {
|
): self {
|
||||||
$this->skip('__TODO__');
|
$this->skip('__TODO__');
|
||||||
|
|
||||||
@ -390,8 +390,8 @@ final class TestCall
|
|||||||
public function wip(// @phpstan-ignore-line
|
public function wip(// @phpstan-ignore-line
|
||||||
array|string|null $note = null,
|
array|string|null $note = null,
|
||||||
array|string|null $assignee = null,
|
array|string|null $assignee = null,
|
||||||
array|string|null $issue = null,
|
array|string|int|null $issue = null,
|
||||||
array|string|null $pr = null,
|
array|string|int|null $pr = null,
|
||||||
): self {
|
): self {
|
||||||
if ($issue !== null) {
|
if ($issue !== null) {
|
||||||
$this->issue($issue);
|
$this->issue($issue);
|
||||||
@ -418,8 +418,8 @@ final class TestCall
|
|||||||
public function done(// @phpstan-ignore-line
|
public function done(// @phpstan-ignore-line
|
||||||
array|string|null $note = null,
|
array|string|null $note = null,
|
||||||
array|string|null $assignee = null,
|
array|string|null $assignee = null,
|
||||||
array|string|null $issue = null,
|
array|string|int|null $issue = null,
|
||||||
array|string|null $pr = null,
|
array|string|int|null $pr = null,
|
||||||
): self {
|
): self {
|
||||||
if ($issue !== null) {
|
if ($issue !== null) {
|
||||||
$this->issue($issue);
|
$this->issue($issue);
|
||||||
|
|||||||
@ -6,7 +6,7 @@ namespace Pest;
|
|||||||
|
|
||||||
function version(): string
|
function version(): string
|
||||||
{
|
{
|
||||||
return '3.0.7';
|
return '3.0.8';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 3.0.7.
|
Pest Testing Framework 3.0.8.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 3.0.7.
|
Pest Testing Framework 3.0.8.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user