Skip to content

Commit

Permalink
Enable 4byte get test in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
acuarica committed Jan 7, 2024
1 parent 96aac5f commit 68b91f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
- run: yarn make:4byte
- run: yarn test
env:
4BYTE_GET_TEST: 1
ENABLE_4BYTE_GET_TEST: 1
# - run: yarn test:smoke

coverage:
Expand Down
4 changes: 2 additions & 2 deletions test/4byte-get/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { readFileSync } from 'fs';
import { Contract } from 'sevm';
import 'sevm/4byte-get';

const ENABLE_4BYTE_GET_TEST = process.env['4BYTE_GET_TEST'];
const ENABLE_4BYTE_GET_TEST = process.env['ENABLE_4BYTE_GET_TEST'];

describe('::4byte-get', function () {
describe(`::4byte-get ENABLE_4BYTE_GET_TEST=${ENABLE_4BYTE_GET_TEST}`, function () {

const title = !ENABLE_4BYTE_GET_TEST ? ' (enable it by setting `ENABLE_4BYTE_GET_TEST`)' : '';

Expand Down

0 comments on commit 68b91f9

Please sign in to comment.