Files
cosmos-explorer/src/Common/__snapshots__/DataAccessUtilityBase.test.ts.snap
2020-05-25 21:30:55 -05:00

22 lines
500 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`getCommonQueryOptions builds the correct default options objects 1`] = `
Object {
"enableScanInQuery": true,
"forceQueryPlan": true,
"maxDegreeOfParallelism": 0,
"maxItemCount": 100,
"populateQueryMetrics": true,
}
`;
exports[`getCommonQueryOptions reads from localStorage 1`] = `
Object {
"enableScanInQuery": true,
"forceQueryPlan": true,
"maxDegreeOfParallelism": 17,
"maxItemCount": 37,
"populateQueryMetrics": true,
}
`;