diff --git a/.github/workflows/all.yml b/.github/workflows/all.yml index 37cdeeb..e09d64e 100644 --- a/.github/workflows/all.yml +++ b/.github/workflows/all.yml @@ -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: diff --git a/test/helpers.ts b/test/helpers.ts index f7f795a..3aacbf7 100644 --- a/test/helpers.ts +++ b/test/helpers.ts @@ -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