Select Git revision
people.mustache
Forked from
TO / Weby / ui-styleguide
Source project has a limited visibility.
config.t 310 B
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();