Skip to content
Snippets Groups Projects
Commit e099ac51 authored by yakomaxa's avatar yakomaxa
Browse files

Remove three comment-out console.log

parent 873755f6
No related branches found
No related tags found
No related merge requests found
......@@ -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();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment