diff --git a/src/mol-script/transpilers/_spec/utils.ts b/src/mol-script/transpilers/_spec/utils.ts index dbc417fe96cf40e1b47b84411604c6b388e0bd8a..9e0d6b59d269ccf1e3a28ddf64fa56db1c2d6a6f 100644 --- a/src/mol-script/transpilers/_spec/utils.ts +++ b/src/mol-script/transpilers/_spec/utils.ts @@ -15,7 +15,6 @@ export function testKeywords(keywords: KeywordDict, transpiler: Transpiler) { const k = keywords[name]; if (k.map) { const expr = transpiler(name); - // compile(expr); expect(expr).toEqual(k.map()); } else { const transpile = () => transpiler(name); @@ -33,7 +32,6 @@ export function testProperties(properties: PropertyDict, transpiler: Transpiler) it(name, () => { if (!p.isUnsupported) { transpiler(example); - // compile(expr); } else { const transpile = () => transpiler(example); expect(transpile).toThrow(); @@ -55,7 +53,6 @@ export function testOperators(operators: OperatorList, transpiler: Transpiler) { it(o.name, () => { if (!o.isUnsupported) { transpiler(example); - // compile(expr); } else { const transpile = () => transpiler(example); expect(transpile).toThrow();