Store spec tests data in local directory

This commit is contained in:
dapplion 2020-12-01 08:22:58 +00:00
parent b64ff7f1d4
commit fa3c9a8c47
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View File

@ -67,3 +67,6 @@ lib/
benchmark-reports
.vscode/
# Eth2.0 spec tests data
test/spec-tests

View File

@ -2,4 +2,4 @@ import path from "path";
export const SPEC_TEST_VERSION = "v1.0.0";
export const SPEC_TEST_TO_DOWNLOAD = ["general" as "general"];
export const SPEC_TESTS_DIR = path.join(__dirname, "../node_modules/@chainsafe/eth2-spec-tests/tests");
export const SPEC_TESTS_DIR = path.join(__dirname, "spec-tests");