Skip to content

Commit

Permalink
chore: Fix flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed Dec 19, 2023
1 parent a37be45 commit 2a15d69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ exports[`postgresql-cubestore HTTP Transport Empty partitions: Empty partitions

exports[`postgresql-cubestore HTTP Transport Rolling Mixed With Dimension No Granularity: Rolling Mixed With Dimension No Granularity 1`] = `
Array [
Object {
"visitors.checkinsRollingTotal": null,
"visitors.source": null,
},
Object {
"visitors.checkinsRollingTotal": null,
"visitors.source": "some",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ exports[`postgresql HTTP Transport Empty partitions: Empty partitions 1`] = `Arr

exports[`postgresql HTTP Transport Rolling Mixed With Dimension No Granularity: Rolling Mixed With Dimension No Granularity 1`] = `
Array [
Object {
"visitors.checkinsRollingTotal": null,
"visitors.source": null,
},
Object {
"visitors.checkinsRollingTotal": null,
"visitors.source": "some",
Expand Down
5 changes: 5 additions & 0 deletions packages/cubejs-testing/test/pre-aggregations-test-case.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ const asserts: [options: QueryTestOptions, query: Query][] = [
dimensions: [
'visitors.source'
],
filters: [{
member: 'visitors.source',
operator: 'equals',
values: ['some']
}],
timezone: 'UTC',
timeDimensions: [{
dimension: 'visitors.createdAt',
Expand Down

0 comments on commit 2a15d69

Please sign in to comment.