From 5b8ea8b7f4b06b0397c1b96b7d2c099f9f29f4d3 Mon Sep 17 00:00:00 2001 From: Doug Lance <4741454+douglance@users.noreply.github.com> Date: Thu, 26 Dec 2024 13:43:19 -0500 Subject: [PATCH] update test runner --- package.json | 2 +- packages/ethers-viem-compat/package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index ef6e5ba67..85cd663f7 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "lint": "yarn workspaces run lint", "format": "yarn workspaces run format", "test:unit": "yarn workspaces run test:unit", - "test:integration": "yarn workspace @arbitrum/sdk test:integration", + "test:integration": "yarn workspaces run test:integration", "gen:abi": "yarn workspace @arbitrum/sdk gen:abi", "gen:network": "yarn workspace @arbitrum/sdk gen:network" }, diff --git a/packages/ethers-viem-compat/package.json b/packages/ethers-viem-compat/package.json index c6a112cac..fbeba5904 100644 --- a/packages/ethers-viem-compat/package.json +++ b/packages/ethers-viem-compat/package.json @@ -25,6 +25,7 @@ "scripts": { "build": "rm -rf dist && tsc -p tsconfig.json", "test:unit": "mocha -r ts-node/register 'tests/**/*.test.ts'", + "test:integration": "echo 'No integration tests for ethers-viem-compat'", "lint": "eslint .", "format": "prettier './**/*.{js,json,md,ts,yml}' '!./src/lib/abi' --write && yarn run lint --fix" },