Skip to content

Commit ac85136

Browse files
authored
Merge pull request #14 from w3bdesign/dev
Delete unused example test
2 parents 5edd727 + 4fa424f commit ac85136

File tree

2 files changed

+9
-24
lines changed

2 files changed

+9
-24
lines changed

tests/Browser/BuyProductTest.php

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,19 @@ class BuyProductTest extends DuskTestCase
1313
*
1414
* @return void
1515
*/
16-
public function testExample()
16+
public function testWeSeeVue()
1717
{
1818
$this->browse(function (Browser $browser) {
1919
$browser->visit('http://127.0.0.1:8000')
2020
->assertSee('Vue');
2121
});
2222
}
23+
24+
public function testWeDoNotSeeLaravel()
25+
{
26+
$this->browse(function (Browser $browser) {
27+
$browser->visit('http://127.0.0.1:8000')
28+
->assertDontSee('Laravel');
29+
});
30+
}
2331
}

tests/Browser/ExampleTest.php

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)