18 lines
1.0 KiB
JavaScript
18 lines
1.0 KiB
JavaScript
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.TestRunErrorFormattableAdapter = exports.TestRun = exports.Compiler = exports.CLIENT_RUNNER_SCRIPT = exports.TEST_RUN_ERROR_TYPE = void 0;
|
|
const read_file_relative_1 = require("read-file-relative");
|
|
const compiler_1 = __importDefault(require("./compiler"));
|
|
exports.Compiler = compiler_1.default;
|
|
const test_run_1 = __importDefault(require("./test-run"));
|
|
exports.TestRun = test_run_1.default;
|
|
const type_1 = __importDefault(require("./test-run-error/type"));
|
|
exports.TEST_RUN_ERROR_TYPE = type_1.default;
|
|
const formattable_adapter_1 = __importDefault(require("./test-run-error/formattable-adapter"));
|
|
exports.TestRunErrorFormattableAdapter = formattable_adapter_1.default;
|
|
const CLIENT_RUNNER_SCRIPT = (0, read_file_relative_1.readSync)('./client/index.js');
|
|
exports.CLIENT_RUNNER_SCRIPT = CLIENT_RUNNER_SCRIPT;
|