@syntest/base-language
Advanced tools
Comparing version 0.3.0-beta.11 to 0.3.0-beta.12
@@ -46,2 +46,3 @@ import { LoggingOptions } from "@syntest/logging"; | ||
testSplitting: boolean; | ||
testDeDuplication: boolean; | ||
testMinimization: boolean; | ||
@@ -48,0 +49,0 @@ metaComments: boolean; |
@@ -257,2 +257,10 @@ "use strict"; | ||
}, | ||
"test-de-duplication": { | ||
alias: [], | ||
default: true, | ||
description: "De-duplicate test cases at the end of the search.", | ||
group: OptionGroups.PostProccessing, | ||
hidden: false, | ||
type: "boolean", | ||
}, | ||
"meta-comments": { | ||
@@ -259,0 +267,0 @@ alias: [], |
@@ -21,2 +21,3 @@ "use strict"; | ||
exports.Launcher = void 0; | ||
const diagnostics_1 = require("@syntest/diagnostics"); | ||
const logging_1 = require("@syntest/logging"); | ||
@@ -52,3 +53,6 @@ const Metrics_1 = require("./Metrics"); | ||
catch (error) { | ||
console.log(error); | ||
if (error instanceof diagnostics_1.BaseError) { | ||
Launcher.LOGGER.error(error.message); | ||
console.log("Context: " + JSON.stringify(error.context)); | ||
} | ||
console.trace(error); | ||
@@ -55,0 +59,0 @@ await this.exit(); |
@@ -34,3 +34,3 @@ "use strict"; | ||
maxValue: subject.objectives.length, | ||
meta: `${budgetManager.getBudget()}`, | ||
meta: `Budget: ${budgetManager.getBudget()}`, | ||
}, | ||
@@ -49,3 +49,3 @@ ]); | ||
maxValue: originalObjectives.length, | ||
meta: `${budgetManager.getBudget()}%`, | ||
meta: `Budget: ${budgetManager.getBudget()}%`, | ||
}); | ||
@@ -52,0 +52,0 @@ }); |
@@ -13,5 +13,5 @@ import { Preset } from "@syntest/module"; | ||
incorporateExecutionInformation: boolean; | ||
typeInferenceMode: boolean; | ||
typeInferenceMode: string; | ||
}; | ||
} | ||
//# sourceMappingURL=RandomSearchPreset.d.ts.map |
@@ -36,3 +36,3 @@ "use strict"; | ||
incorporateExecutionInformation: false, | ||
typeInferenceMode: false, | ||
typeInferenceMode: "none", | ||
}; | ||
@@ -39,0 +39,0 @@ } |
{ | ||
"name": "@syntest/base-language", | ||
"version": "0.3.0-beta.11", | ||
"version": "0.3.0-beta.12", | ||
"description": "SynTest abstract tool that can be used to implement a new language", | ||
@@ -52,7 +52,7 @@ "keywords": [ | ||
"@syntest/analysis": "^0.3.0-beta.1", | ||
"@syntest/cli-graphics": "^0.3.0-beta.1", | ||
"@syntest/cli-graphics": "^0.3.0-beta.2", | ||
"@syntest/logging": "^0.2.0-beta.2", | ||
"@syntest/metric": "^0.2.0-beta.0", | ||
"@syntest/module": "^0.2.0-beta.4", | ||
"@syntest/search": "^0.5.0-beta.10", | ||
"@syntest/module": "^0.2.0-beta.5", | ||
"@syntest/search": "^0.5.0-beta.11", | ||
"@syntest/storage": "^0.3.0-beta.2", | ||
@@ -68,3 +68,3 @@ "globby": "11.0.4", | ||
}, | ||
"gitHead": "3f6b9612c030ffc79d5e79c5c1c126ca816a87a6" | ||
"gitHead": "a31a6f370aa09b9d46ee614be4077bfa2ff03290" | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
217300
3094