-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathTestCase.php
52 lines (45 loc) · 1.22 KB
/
TestCase.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?php
namespace STS\VisualTesting\Tests;
use Facebook\WebDriver\Remote\RemoteWebDriver;
use Laravel\Dusk\Browser;
use STS\VisualTesting\Agent;
use STS\VisualTesting\VisualTestingServiceProvider;
class TestCase extends \Orchestra\Testbench\TestCase
{
/**
* @param \Illuminate\Foundation\Application $app
*
* @return array
*/
protected function getPackageProviders($app)
{
return [VisualTestingServiceProvider::class];
}
/**
*
*/
protected function setUp(): void
{
parent::setUp();
// Always need a dummy agent file in place
file_put_contents(sys_get_temp_dir() . '/percy-agent.js', "");
config(['visual-testing.percy.agent_path' => sys_get_temp_dir() . '/percy-agent.js']);
}
/**
* @return Agent
*/
protected function agent()
{
return resolve(Agent::class);
}
/**
* @return Browser|\Mockery\MockInterface
*/
protected function browser()
{
$browser = \Mockery::mock(Browser::class);
$browser->driver = \Mockery::mock(RemoteWebDriver::class);
$browser->driver->shouldReceive('getCurrentURL')->andReturn($browser::$baseUrl . '/test');
return $browser;
}
}