Initial Move from Azure DevOps to GitHub

This commit is contained in:
Steve Faulkner
2020-05-25 21:30:55 -05:00
commit 36581fb6d9
986 changed files with 195242 additions and 0 deletions

View 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",
}
`;

View 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,
}
`;

View 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,
}
`;