Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
private getYmlContent(type: string, platform: string): string {
const parser = new TestParser();
const configuration = {
description: this.getTestSuiteDescription(type),
};
const interactions = [this.getLaunchInteraction(type), this.getHelpInteraction(type, platform)];
const yamlObject = {
configuration,
"tests": [
{
interactions,
"name": this.getTestName(),
},
],
};