File tree 2 files changed +8
-4
lines changed
2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -53,9 +53,12 @@ def report!
53
53
end
54
54
end
55
55
56
- def coverage
57
- percentage = @tested . count * 100 / @apis [ :json ] . count
58
- ""
56
+ def coverage_serverless
57
+ @tested . count * 100 / serverless_apis . count
58
+ end
59
+
60
+ def coverage_stack
61
+ @tested . count * 100 / @apis [ :json ] . count
59
62
end
60
63
61
64
private
Original file line number Diff line number Diff line change 5
5
* Endpoints in Serverless: <%= @reporter.serverless_apis.count %>
6
6
* [Tested](#tested): <%= @reporter.tested.count %>
7
7
* [Untested](#untested): <%= @reporter.untested.count %>
8
- * Coverage: <%= @reporter.coverage %>
8
+ * Coverage Stack: 
9
+ * Coverage Serverless: 
9
10
10
11
## Tested
11
12
You can’t perform that action at this time.
0 commit comments