We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9488a54 commit baea0c6Copy full SHA for baea0c6
test/end-to-end/src/test-taskpane.ts
@@ -7,7 +7,7 @@ const customFunctionsData = (<any>functionsJsonData).functions;
7
const port: number = 4201;
8
let testValues = [];
9
10
-Office.initialize = async () => {
+Office.onReady(async () => {
11
document.getElementById("sideload-msg").style.display = "none";
12
document.getElementById("app-body").style.display = "flex";
13
document.getElementById("run").onclick = run;
@@ -18,7 +18,7 @@ Office.initialize = async () => {
18
await sendTestResults(testValues, port);
19
await closeWorkbook();
20
}
21
-};
+});
22
23
async function runCfTests(): Promise<void> {
24
// Exercise custom functions
0 commit comments