Skip to content

Commit 9555af6

Browse files
authored
chore: Expose isVisible and public properties in meta consistently -- fix tests (#7410)
1 parent 35ca1d0 commit 9555af6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -230,20 +230,20 @@ describe('Schema Testing', () => {
230230
await compiler.compile();
231231

232232
expect(metaTransformer.cubes[0]).toMatchObject({
233-
isVisible: false,
234233
config: {
234+
isVisible: false,
235235
name: 'CubeA',
236236
}
237237
});
238238
expect(metaTransformer.cubes[1]).toMatchObject({
239-
isVisible: true,
240239
config: {
240+
isVisible: true,
241241
name: 'CubeB',
242242
}
243243
});
244244
expect(metaTransformer.cubes[2]).toMatchObject({
245-
isVisible: false,
246245
config: {
246+
isVisible: false,
247247
name: 'CubeC',
248248
}
249249
});

0 commit comments

Comments
 (0)