Skip to content
Snippets Groups Projects
Select Git revision
  • 1480c5008abf11ee8ce8b8fdcd0f6682b88afd07
  • master default protected
2 results

AnnouncementEditModal.jsx

Blame
  • Forked from TO / cf-online-ui
    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();