Test Failed
Pull Request — master (#80)
by Mike
05:21
created

DripTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testFormDoesntExpire() 0 6 1
1
<?php namespace GeneaLabs\LaravelCaffeine\Tests\Feature;
2
3
use GeneaLabs\LaravelCaffeine\Tests\BrowserTestCase;
4
use Laravel\Dusk\Browser;
5
6
class DripTest extends BrowserTestCase
7
{
8
    public function testFormDoesntExpire()
9
    {
10
        $this->browse(function (Browser $browser) {
11
            $response = $browser->visit('hello');
12
                // ->assertSee('hello world');
13
            dd($response->dump());
14
        });
15
    }
16
}
17