Skip to content

Commit

Permalink
Update BladeComponentCest.php
Browse files Browse the repository at this point in the history
  • Loading branch information
2amjsouza committed Dec 8, 2023
1 parent 0d42b90 commit 4c0bbcf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/laravel-functional/BladeComponentCest.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ public function testQrCodeComponentSimpleText(FunctionalTester $I)

protected function grabBase64(string $source)
{
var_dump($source);
die;
$data = explode('base64,', $source)[1];
$data = explode('=="', $data)[0];

Expand Down Expand Up @@ -114,4 +116,4 @@ public function testQrCodeComponentWithColors(FunctionalTester $I)
$I->seeInSource(base64_encode($qrCodeBackground));
$I->seeInSource(base64_encode($qrCodeForeground));
}
}
}

0 comments on commit 4c0bbcf

Please sign in to comment.