Skip to content

Commit f01be26

Browse files
Only Successful Tests Condition Fix (#37)
Update results.ts
1 parent d5d3f99 commit f01be26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/results.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ class PackageResult {
3636
}
3737

3838
public onlySuccessfulTests(): boolean {
39-
return this.conclusions.pass === 0 && this.conclusions.fail === 0
39+
return this.conclusions.skip === 0 && this.conclusions.fail === 0
4040
}
4141

4242
public output(): string {

0 commit comments

Comments
 (0)