This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
chainsafe-bls/test/downloadSpecTests.ts

17 lines
395 B
TypeScript

import {downloadTests} from "@chainsafe/lodestar-spec-test-util";
import {SPEC_TEST_VERSION, SPEC_TESTS_DIR, SPEC_TEST_TO_DOWNLOAD} from "./params.js";
/* eslint-disable no-console */
downloadTests(
{
specVersion: SPEC_TEST_VERSION,
outputDir: SPEC_TESTS_DIR,
testsToDownload: SPEC_TEST_TO_DOWNLOAD,
},
console.log
).catch((e) => {
console.error(e);
process.exit(1);
});