We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6696cbc commit eba53daCopy full SHA for eba53da
packages/cubejs-schema-compiler/test/unit/transpilers.test.ts
@@ -77,7 +77,7 @@ describe('Transpilers', () => {
77
expect(content).toEqual(`const helperFunction = () => 'hello';
78
addExport({
79
helperFunction: helperFunction
80
-})
+});
81
82
alias: helperFunction
83
});
@@ -87,11 +87,11 @@ function requireFilterParam() {
87
}
88
89
requireFilterParam: requireFilterParam
90
91
const someVar = 42;
92
93
someVar: someVar
94
-})`);
+});`);
95
96
errorsReport.throwIfAny(); // should not throw
97
0 commit comments