Skip to content

Commit 5e9fbe0

Browse files
committed
fix tests
1 parent 797f555 commit 5e9fbe0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cubejs-schema-compiler/test/unit/transpilers.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ describe('Transpilers', () => {
7777
expect(content).toEqual(`const helperFunction = () => 'hello';
7878
addExport({
7979
helperFunction: helperFunction
80-
})
80+
});
8181
addExport({
8282
alias: helperFunction
8383
});
@@ -87,11 +87,11 @@ function requireFilterParam() {
8787
}
8888
addExport({
8989
requireFilterParam: requireFilterParam
90-
})
90+
});
9191
const someVar = 42;
9292
addExport({
9393
someVar: someVar
94-
})`);
94+
});`);
9595

9696
errorsReport.throwIfAny(); // should not throw
9797
});

0 commit comments

Comments
 (0)