use Mojo::Base -strict;

use Test::More;
use Test::Mojo;

use constant SECRET => 'TEST';

my $t = Test::Mojo->new('CF', {
    test                 => 1,
    test_auth_jwt_secret => SECRET,
});

# konfigurace aplikace
$t->get_ok('/api/config')
    ->status_is(200)
    ->json_message_has('')
;

done_testing();