Skip to content

Commit

Permalink
chore(automated): Lint commit and format
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Aug 22, 2024
1 parent 9d87119 commit 974e038
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions tests/src/scripts/coverage.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,33 @@ test("oldCoverage pass", () => {
expect(result).toEqual(83.33);
process.chdir("../..");
});
test("low coverage score", () => {
process.chdir("tests/pass_repo");

const result: stepResponse = getCoverage(
parse(`SF:lib/main.dart
DA:3,1
DA:8,1
DA:10,1
DA:17,1
DA:21,1
DA:22,1
DA:28,1
DA:30,1
DA:32,1
DA:33,1
DA:34,1
DA:35,1
LF:12
LH:12
end_of_record
`),
COVERAGE_DIR,
"50"
);

console.log(result.output);
expect(result.output.includes(" (🔻 down from")).toBe(true);

process.chdir("../..");
});

0 comments on commit 974e038

Please sign in to comment.