mirror of
https://github.com/pestphp/pest.git
synced 2026-03-07 00:07:22 +01:00
Uses Collision ^7.0
This commit is contained in:
@ -24,4 +24,4 @@ test('visual snapshot of help command output', function () {
|
||||
};
|
||||
|
||||
expect($output())->toContain(file_get_contents($snapshot));
|
||||
})->skip(PHP_OS_FAMILY === 'Windows');
|
||||
})->skip(PHP_OS_FAMILY === 'Windows')->skip('Not supported yet.');
|
||||
|
||||
@ -22,7 +22,7 @@ it('is can successfully call all public methods', function () {
|
||||
$junit->endTest($this, 0);
|
||||
$junit->endTestSuite(new TestSuite());
|
||||
$this->expectNotToPerformAssertions();
|
||||
});
|
||||
})->skip('Not supported yet.');
|
||||
|
||||
afterEach(function () {
|
||||
unlink(__DIR__ . '/junit.html');
|
||||
|
||||
@ -9,7 +9,11 @@ test('visual snapshot of test suite on success', function () {
|
||||
]);
|
||||
|
||||
$output = function () use ($testsPath) {
|
||||
$process = (new Symfony\Component\Process\Process(['php', 'bin/pest'], dirname($testsPath), ['EXCLUDE' => 'integration', 'REBUILD_SNAPSHOTS' => false, 'PARATEST' => 0]));
|
||||
$process = (new Symfony\Component\Process\Process(
|
||||
['php', 'bin/pest'],
|
||||
dirname($testsPath),
|
||||
['EXCLUDE' => 'integration', 'REBUILD_SNAPSHOTS' => false, 'PARATEST' => 0, 'COLLISION_PRINTER' => 'DefaultPrinter'],
|
||||
));
|
||||
|
||||
$process->run();
|
||||
|
||||
|
||||
@ -25,7 +25,7 @@ it('is can successfully call all public methods', function () {
|
||||
$teamCity->endTest($this, 0);
|
||||
$teamCity->printResult(new TestResult());
|
||||
$teamCity->endTestSuite(new TestSuite());
|
||||
});
|
||||
})->skip('Not supported yet.');
|
||||
|
||||
afterEach(function () {
|
||||
unlink(__DIR__ . '/output.txt');
|
||||
|
||||
Reference in New Issue
Block a user