Prettier 2.0 (#393)

This commit is contained in:
Steve Faulkner
2021-01-20 09:15:01 -06:00
committed by GitHub
parent c1937ca464
commit 4be53284b5
500 changed files with 41927 additions and 41838 deletions

View File

@@ -58,7 +58,7 @@ const sendMessageToExplorerFrame = (data: unknown): void => {
explorerFrame.contentWindow.postMessage(
{
signature: "pcIframe",
data: data
data: data,
},
explorerFrame.contentDocument.referrer || window.location.href
);
@@ -126,12 +126,12 @@ const initTestExplorer = async (): Promise<void> => {
sharedThroughputDefault: 400,
defaultCollectionThroughput: {
storage: "100",
throughput: { fixed: 400, unlimited: 400, unlimitedmax: 100000, unlimitedmin: 400, shared: 400 }
throughput: { fixed: 400, unlimited: 400, unlimitedmax: 100000, unlimitedmin: 400, shared: 400 },
},
// add UI test only when feature is not dependent on flights anymore
flights: [],
selfServeType: selfServeType
} as ViewModels.DataExplorerInputsFrame
selfServeType: selfServeType,
} as ViewModels.DataExplorerInputsFrame,
};
window.postMessage(initTestExplorerContent, window.location.href);

View File

@@ -6,5 +6,5 @@ export enum TestExplorerParams {
portalRunnerDatabaseAccountKey = "portalRunnerDatabaseAccountKey",
portalRunnerSubscripton = "portalRunnerSubscripton",
portalRunnerResourceGroup = "portalRunnerResourceGroup",
selfServeType = "selfServeType"
selfServeType = "selfServeType",
}