Skip to content

Commit

Permalink
fixed lint & removed forge from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ernanirst committed Dec 28, 2023
1 parent f2e5c04 commit a035e1c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.GHB_TOKEN }}
- name: Lint
run: npm run lint
- name: Run Foundry tests
run: forge test --verbosity -vvv
# - name: Run Foundry tests
# run: forge test --verbosity -vvv
- name: Compile Smart Contracts
run: npm run compile
env:
Expand Down
4 changes: 1 addition & 3 deletions test/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ export async function assertListItem(
expectedPosition: number,
) {
const { expirationDate, previous } = await LinkedLists.getListItem(itemId)
expect(expirationDate, `Item ${itemId} expiration date is not ${itemExpirationDate}`).to.be.equal(
itemExpirationDate,
)
expect(expirationDate, `Item ${itemId} expiration date is not ${itemExpirationDate}`).to.be.equal(itemExpirationDate)

if (expectedPosition === 0) {
// if item is the head
Expand Down

0 comments on commit a035e1c

Please sign in to comment.