Переглянути джерело

Remove three comment-out console.log

yakomaxa 2 роки тому
батько
коміт
e099ac514a
1 змінених файлів з 0 додано та 3 видалено
  1. 0 3
      src/mol-script/transpilers/_spec/utils.ts

+ 0 - 3
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();