Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions t/Yath/integration/encoding.t
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# HARNESS-CONFLICTS YATH
use Test2::V0;
plan skip_all => "TODO: verbose UTF-8 renderer output not aligned with current Streamer/Renderer";
__END__

use Test2::V0;

use lib 't/lib';
Expand Down Expand Up @@ -36,7 +32,7 @@ my @want = (

yath(
command => 'test',
args => ['-v', "$dir/plugin.tx"],
args => ['-j1', '-v', "$dir/plugin.tx"],
exit => 0,
encoding => 'utf8',
test => sub {
Expand All @@ -50,7 +46,7 @@ yath(

yath(
command => 'test',
args => ['-v', "$dir/no-plugin.tx"],
args => ['-j1', '-v', "$dir/no-plugin.tx"],
exit => 0,
test => sub {
my $out = shift;
Expand Down
6 changes: 1 addition & 5 deletions t/Yath/integration/tapsubtest.t
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
# HARNESS-CONFLICTS YATH
use Test2::V0;
plan skip_all => "TODO: TAP subtest verbose rendering not aligned with current renderer";
__END__

use Test2::V0;

use lib 't/lib';
Expand All @@ -13,7 +9,7 @@ $dir =~ s{^\./}{};

yath(
command => 'test',
args => [$dir, '--ext=tx', '-v'],
args => [$dir, '--ext=tx', '-j1', '-v'],
exit => 0,
test => sub {
my $out = shift;
Expand Down
Loading