mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-28 21:32:05 +00:00
24 lines
548 B
Plaintext
24 lines
548 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`getCommonQueryOptions builds the correct default options objects 1`] = `
|
|
{
|
|
"enableQueryControl": false,
|
|
"enableScanInQuery": true,
|
|
"forceQueryPlan": true,
|
|
"maxDegreeOfParallelism": 0,
|
|
"maxItemCount": 100,
|
|
"populateQueryMetrics": true,
|
|
}
|
|
`;
|
|
|
|
exports[`getCommonQueryOptions reads from localStorage 1`] = `
|
|
{
|
|
"enableQueryControl": false,
|
|
"enableScanInQuery": true,
|
|
"forceQueryPlan": true,
|
|
"maxDegreeOfParallelism": 17,
|
|
"maxItemCount": 37,
|
|
"populateQueryMetrics": true,
|
|
}
|
|
`;
|