diff --git a/.github/workflows/code.yml b/.github/workflows/code.yml index f3c074dee..a306b057e 100644 --- a/.github/workflows/code.yml +++ b/.github/workflows/code.yml @@ -80,6 +80,9 @@ jobs: - suite: "try-runtime" build-args: "--features try-runtime" skip-ts-tests: true + - suite: "evm-tracing" + build-args: "--features evm-tracing" + skip-bash-tests: true fail-fast: false name: End-to-end tests / ${{ matrix.test.suite }} runs-on: ubuntu-24.04 diff --git a/utils/e2e-tests/ts/tests/evm-tracing/debugTraceCall.ts b/utils/e2e-tests/ts/tests/evm-tracing/debugTraceCall.ts new file mode 100644 index 000000000..cd16939fa --- /dev/null +++ b/utils/e2e-tests/ts/tests/evm-tracing/debugTraceCall.ts @@ -0,0 +1,3 @@ +import { test } from "vitest"; + +test("todo", () => {});