mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-04-18 04:19:11 +01:00
Initial Move from Azure DevOps to GitHub
This commit is contained in:
21
src/Common/__snapshots__/CosmosClient.test.ts.snap
Normal file
21
src/Common/__snapshots__/CosmosClient.test.ts.snap
Normal file
@@ -0,0 +1,21 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`requestPlugin Emulator builds a url for emulator proxy via webpack 1`] = `
|
||||
Object {
|
||||
"endpoint": "/proxy",
|
||||
"headers": Object {
|
||||
"x-ms-proxy-target": "http://localhost",
|
||||
},
|
||||
"path": "/dbs/foo",
|
||||
}
|
||||
`;
|
||||
|
||||
exports[`requestPlugin Hosted builds a proxy URL in development 1`] = `
|
||||
Object {
|
||||
"endpoint": "/proxy",
|
||||
"headers": Object {
|
||||
"x-ms-proxy-target": "baz",
|
||||
},
|
||||
"path": "/dbs/foo",
|
||||
}
|
||||
`;
|
||||
21
src/Common/__snapshots__/DataAccessUtilityBase.test.ts.snap
Normal file
21
src/Common/__snapshots__/DataAccessUtilityBase.test.ts.snap
Normal file
@@ -0,0 +1,21 @@
|
||||
// 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,
|
||||
}
|
||||
`;
|
||||
14
src/Common/__snapshots__/IteratorUtilities.test.ts.snap
Normal file
14
src/Common/__snapshots__/IteratorUtilities.test.ts.snap
Normal file
@@ -0,0 +1,14 @@
|
||||
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
||||
|
||||
exports[`nextPage returns results for the next page 1`] = `
|
||||
Object {
|
||||
"activityId": "foo",
|
||||
"documents": Array [],
|
||||
"firstItemIndex": 11,
|
||||
"hasMoreResults": false,
|
||||
"headers": Object {},
|
||||
"itemCount": 0,
|
||||
"lastItemIndex": 10,
|
||||
"requestCharge": 1,
|
||||
}
|
||||
`;
|
||||
Reference in New Issue
Block a user