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 6ba80af commit fcd985eCopy full SHA for fcd985e
tests/analytics/queries.test.js
@@ -60,6 +60,7 @@ describe('analytics', () => {
60
const end = moment().toDate();
61
const testBuilderFunction = (func) => {
62
const fn = func('STARTUPTIME')
63
+ .licenseKey('license-key')
64
.between(start, end)
65
.interval('DAY')
66
.filter('STARTUPTIME', 'GT', 0)
@@ -71,6 +72,7 @@ describe('analytics', () => {
71
72
assertItReturnsPromise(mockPost, () => { return fn.query() });
73
assertPayload(mockPost, () => { return fn.query() }, {
74
dimension: 'STARTUPTIME',
75
+ licenseKey: 'license-key',
76
start: start,
77
end: end,
78
filters: [
0 commit comments