mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-19 00:41:31 +00:00
22 lines
452 B
Plaintext
22 lines
452 B
Plaintext
// 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",
|
|
}
|
|
`;
|