mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 15:57:21 +01:00
Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b014e4b18 | |||
| 034715e8b1 | |||
| 09eff785c4 | |||
| 22cc7805d7 | |||
| 669dc0da71 | |||
| 689da4ed4e | |||
| 2f15861b0d |
@ -24,10 +24,10 @@
|
|||||||
"pestphp/pest-plugin": "^3.0.0",
|
"pestphp/pest-plugin": "^3.0.0",
|
||||||
"pestphp/pest-plugin-arch": "^3.0.0",
|
"pestphp/pest-plugin-arch": "^3.0.0",
|
||||||
"pestphp/pest-plugin-mutate": "^3.0.3",
|
"pestphp/pest-plugin-mutate": "^3.0.3",
|
||||||
"phpunit/phpunit": "^11.3.4"
|
"phpunit/phpunit": "^11.3.6"
|
||||||
},
|
},
|
||||||
"conflict": {
|
"conflict": {
|
||||||
"phpunit/phpunit": ">11.3.4",
|
"phpunit/phpunit": ">11.3.6",
|
||||||
"sebastian/exporter": "<6.0.0",
|
"sebastian/exporter": "<6.0.0",
|
||||||
"webmozart/assert": "<1.11.0"
|
"webmozart/assert": "<1.11.0"
|
||||||
},
|
},
|
||||||
|
|||||||
@ -25,7 +25,7 @@ final class BootOverrides implements Bootstrapper
|
|||||||
'8abdad6413329c6fe0d7d44a8b9926e390af32c0b3123f3720bb9c5bbc6fbb7e' => 'TextUI/Output/Default/ProgressPrinter/Subscriber/TestSkippedSubscriber.php',
|
'8abdad6413329c6fe0d7d44a8b9926e390af32c0b3123f3720bb9c5bbc6fbb7e' => 'TextUI/Output/Default/ProgressPrinter/Subscriber/TestSkippedSubscriber.php',
|
||||||
'43883b7e5811886cf3731c8ed6304d5a77078d9731e1e505abc2da36bde19f3e' => 'TextUI/TestSuiteFilterProcessor.php',
|
'43883b7e5811886cf3731c8ed6304d5a77078d9731e1e505abc2da36bde19f3e' => 'TextUI/TestSuiteFilterProcessor.php',
|
||||||
'357d5cd7007f8559b26e1b8cdf43bb6fb15b51b79db981779da6f31b7ec39dad' => 'Event/Value/ThrowableBuilder.php',
|
'357d5cd7007f8559b26e1b8cdf43bb6fb15b51b79db981779da6f31b7ec39dad' => 'Event/Value/ThrowableBuilder.php',
|
||||||
'01974a686eba69b5fbb87a904d936eae2176e39567616898c5b758db71d87a22' => 'Logging/JUnit/JunitXmlLogger.php',
|
'676273f1fe483877cf2d95c5aedbf9ae5d6a8e2f4c12d6ce716df6591e6db023' => 'Logging/JUnit/JunitXmlLogger.php',
|
||||||
];
|
];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@ -89,7 +89,7 @@ final class Project
|
|||||||
{
|
{
|
||||||
$this->issues = "https://{$namespace}.atlassian.net/browse/{$project}-%s";
|
$this->issues = "https://{$namespace}.atlassian.net/browse/{$project}-%s";
|
||||||
|
|
||||||
$this->assignees = "https://{$namespace}.atlassian.net/secure/ViewProfile?name=%s";
|
$this->assignees = "https://{$namespace}.atlassian.net/secure/ViewProfile.jspa?name=%s";
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -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.6';
|
return '3.0.8';
|
||||||
}
|
}
|
||||||
|
|
||||||
function testDirectory(string $file = ''): string
|
function testDirectory(string $file = ''): string
|
||||||
|
|||||||
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
Pest Testing Framework 3.0.6.
|
Pest Testing Framework 3.0.8.
|
||||||
|
|
||||||
USAGE: pest <file> [options]
|
USAGE: pest <file> [options]
|
||||||
|
|
||||||
|
|||||||
@ -1,3 +1,3 @@
|
|||||||
|
|
||||||
Pest Testing Framework 3.0.6.
|
Pest Testing Framework 3.0.8.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user