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.
2020-11-19 13:22:41 +00:00
|
|
|
import path from "path";
|
2022-04-11 15:08:15 +00:00
|
|
|
import {fileURLToPath} from "url";
|
|
|
|
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
2020-12-01 08:17:25 +00:00
|
|
|
|
|
|
|
export const SPEC_TEST_VERSION = "v1.0.0";
|
2022-04-11 15:08:15 +00:00
|
|
|
export const SPEC_TEST_TO_DOWNLOAD = ["general" as const];
|
2020-12-01 08:22:58 +00:00
|
|
|
export const SPEC_TESTS_DIR = path.join(__dirname, "spec-tests");
|