Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,5 +96,5 @@ jobs:
- name: Check coverage threshold
uses: ./.github/actions/check-coverage
with:
minimum-coverage: 90.00
minimum-coverage: 40.00
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
<!-- Just for testing -->

## Solidity Template

**Template for Solidity projects with a suite of useful tools pre-installed.**
Expand Down
9 changes: 5 additions & 4 deletions test/Counter.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ contract CounterTest is Test {
counter.setNumber(0);
}

function test_Increment() public {
counter.increment();
assertEq(counter.number(), 1);
}
// Just for testing
// function test_Increment() public {
// counter.increment();
// assertEq(counter.number(), 1);
// }

function testFuzz_SetNumber(uint256 x) public {
counter.setNumber(x);
Expand Down