View | Details | Raw Unified | Return to bug 39119
Collapse All | Expand All

(-)a/xt/js_tidy.t (-1 / +1 lines)
Lines 26-32 plan tests => scalar @js_files; Link Here
26
26
27
foreach my $filepath (@js_files) {
27
foreach my $filepath (@js_files) {
28
    chomp $filepath;
28
    chomp $filepath;
29
    my $tidy    = qx{yarn --silent run prettier $filepath};
29
    my $tidy    = qx{perl misc/devel/tidy.pl --silent --no-write $filepath};
30
    my $content = read_file $filepath;
30
    my $content = read_file $filepath;
31
    ok( $content eq $tidy, "$filepath should be kept tidy" );
31
    ok( $content eq $tidy, "$filepath should be kept tidy" );
32
}
32
}
(-)a/xt/vue_tidy.t (-2 / +1 lines)
Lines 25-31 plan tests => scalar @vue_files; Link Here
25
25
26
foreach my $filepath (@vue_files) {
26
foreach my $filepath (@vue_files) {
27
    chomp $filepath;
27
    chomp $filepath;
28
    my $tidy    = qx{yarn --silent run prettier $filepath};
28
    my $tidy    = qx{perl misc/devel/tidy.pl --silent --no-write $filepath};
29
    my $content = read_file $filepath;
29
    my $content = read_file $filepath;
30
    ok( $content eq $tidy, "$filepath should be kept tidy" );
30
    ok( $content eq $tidy, "$filepath should be kept tidy" );
31
}
31
}
32
- 

Return to bug 39119