<?php
it('renders the welcome page with a sign-in link once login exists', function () {
$this->get('/')
->assertOk()
->assertSee('CluPilot')
->assertSee(route('login'), false);
});